-
I'm trying to glue all the tooling for my homelab with the command launcher, and wonder if there is an existing way to:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
For now, it is not possible to build a preconfigured binary, but the remote configuration feature can help you achieve your scenario. In short, it is a configuration file on a remote location, which can be accessed by all the machines that you would like to deploy command launcher. When command launcher starts, it will read environment variable The remote configuration file doesn't need to cover the complete configurations, you can include only the config items that you would like all command launcher instance inherits. For example, if you want to force them to download the same packages, you can set your remote config like this: {
"command_repository_base_url": "https://your-remote-package-registry-root/"
} Another useful configuration item related to this is the You can provide a bash script to setup the environment variable and download command launcher for your use case. |
Beta Was this translation helpful? Give feedback.
For now, it is not possible to build a preconfigured binary, but the remote configuration feature can help you achieve your scenario.
In short, it is a configuration file on a remote location, which can be accessed by all the machines that you would like to deploy command launcher.
When command launcher starts, it will read environment variable
[PREFIX]_REMOTE_CONFIG_URL
, which points to this remote configuration file. Command launcher will merge the remote and local configurations and override the local file.The remote configuration file doesn't need to cover the complete configurations, you can include only the config items that you would like all command launcher instance inherits.
Fo…