website/content/v1.13/reference/configuration/runtime/environmentconfig.md
{{< highlight yaml >}} apiVersion: v1alpha1 kind: EnvironmentConfig
variables: GRPC_GO_LOG_SEVERITY_LEVEL: info GRPC_GO_LOG_VERBOSITY_LEVEL: "99" https_proxy: http://SERVER:PORT/ {{< /highlight >}}
| Field | Type | Description | Value(s) |
|---|---|---|---|
variables | Env | This field allows for the addition of environment variables. | |
| All environment variables are set on PID 1 in addition to every service. | |||
| Propagation of environment variables to services is done only at initial service start time. | |||
| To modify environment variables for services, the node must be restarted. | |||
| Multiple values for the same environment variable (in multiple documents) will replace previous values, with the last one taking precedence. | |||
| Fully removing an environment variable can only be achieved by removing it from the document and restarting the machine. | |||
| Environment variable names are validated, and should: |
GRPC_GO_LOG_VERBOSITY_LEVEL
GRPC_GO_LOG_SEVERITY_LEVEL
http_proxy
https_proxy
no_proxy
|