mirror of
https://github.com/coder/coder.git
synced 2026-06-03 21:18:24 +00:00
04727c06e8
Experiments passed to provisioners to determine behavior. This adds `--experiments` flag to provisioner daemons. Prior to this, provisioners had no method to turn on/off experiments.
64 lines
2.3 KiB
Plaintext
64 lines
2.3 KiB
Plaintext
coder v0.0.0-devel
|
|
|
|
USAGE:
|
|
coder provisioner start [flags]
|
|
|
|
Run a provisioner daemon
|
|
|
|
OPTIONS:
|
|
--experiments string-array, $CODER_EXPERIMENTS
|
|
Enable one or more experiments. These are not ready for production.
|
|
Separate multiple experiments with commas, or enter '*' to opt-in to
|
|
all available experiments.
|
|
|
|
-O, --org string, $CODER_ORGANIZATION
|
|
Select which organization (uuid or name) to use.
|
|
|
|
-c, --cache-dir string, $CODER_CACHE_DIRECTORY (default: [cache dir])
|
|
Directory to store cached data.
|
|
|
|
--key string, $CODER_PROVISIONER_DAEMON_KEY
|
|
Provisioner key to authenticate with Coder server.
|
|
|
|
--log-filter string-array, $CODER_PROVISIONER_DAEMON_LOG_FILTER
|
|
Filter debug logs by matching against a given regex. Use .* to match
|
|
all debug logs.
|
|
|
|
--log-human string, $CODER_PROVISIONER_DAEMON_LOGGING_HUMAN (default: /dev/stderr)
|
|
Output human-readable logs to a given file.
|
|
|
|
--log-json string, $CODER_PROVISIONER_DAEMON_LOGGING_JSON
|
|
Output JSON logs to a given file.
|
|
|
|
--log-stackdriver string, $CODER_PROVISIONER_DAEMON_LOGGING_STACKDRIVER
|
|
Output Stackdriver compatible logs to a given file.
|
|
|
|
--name string, $CODER_PROVISIONER_DAEMON_NAME
|
|
Name of this provisioner daemon. Defaults to the current hostname
|
|
without FQDN.
|
|
|
|
--poll-interval duration, $CODER_PROVISIONERD_POLL_INTERVAL (default: 1s)
|
|
Deprecated and ignored.
|
|
|
|
--poll-jitter duration, $CODER_PROVISIONERD_POLL_JITTER (default: 100ms)
|
|
Deprecated and ignored.
|
|
|
|
--prometheus-address string, $CODER_PROMETHEUS_ADDRESS (default: 127.0.0.1:2112)
|
|
The bind address to serve prometheus metrics.
|
|
|
|
--prometheus-enable bool, $CODER_PROMETHEUS_ENABLE (default: false)
|
|
Serve prometheus metrics on the address defined by prometheus address.
|
|
|
|
--psk string, $CODER_PROVISIONER_DAEMON_PSK
|
|
Pre-shared key to authenticate with Coder server.
|
|
DEPRECATED: Use --key instead.
|
|
|
|
-t, --tag string-array, $CODER_PROVISIONERD_TAGS
|
|
Tags to filter provisioner jobs by.
|
|
|
|
--verbose bool, $CODER_PROVISIONER_DAEMON_VERBOSE (default: false)
|
|
Output debug-level logs.
|
|
|
|
———
|
|
Run `coder --help` for a list of global options.
|