mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 05:27:21 +00:00
Adding missing variable defaults for OpenStack provider.
This commit is contained in:
parent
2ffc86bc1d
commit
707ef2ce76
@ -58,3 +58,12 @@ STACK_CREATE_TIMEOUT=${STACK_CREATE_TIMEOUT:-60}
|
|||||||
|
|
||||||
# Enable Proxy, if true kube-up will apply your current proxy settings(defined by *_PROXY environment variables) to the deployment.
|
# Enable Proxy, if true kube-up will apply your current proxy settings(defined by *_PROXY environment variables) to the deployment.
|
||||||
ENABLE_PROXY=${ENABLE_PROXY:-false}
|
ENABLE_PROXY=${ENABLE_PROXY:-false}
|
||||||
|
|
||||||
|
# Per-protocol proxy settings.
|
||||||
|
FTP_PROXY=${FTP_PROXY:-}
|
||||||
|
HTTP_PROXY=${HTTP_PROXY:-}
|
||||||
|
HTTPS_PROXY=${HTTPS_PROXY:-}
|
||||||
|
SOCKS_PROXY=${SOCKS_PROXY:-}
|
||||||
|
|
||||||
|
# IPs and Domains that bypass the proxy.
|
||||||
|
NO_PROXY=${NO_PROXY:-}
|
||||||
|
@ -23,3 +23,4 @@ export OS_PASSWORD=${OS_PASSWORD:-secretsecret}
|
|||||||
export OS_AUTH_URL=${OS_AUTH_URL:-http://192.168.123.100:5000/v2.0}
|
export OS_AUTH_URL=${OS_AUTH_URL:-http://192.168.123.100:5000/v2.0}
|
||||||
export OS_TENANT_NAME=${OS_TENANT_NAME:-admin}
|
export OS_TENANT_NAME=${OS_TENANT_NAME:-admin}
|
||||||
export OS_TENANT_ID=${OS_TENANT_ID:-ed51b98b40944d89a449592eb67431eb}
|
export OS_TENANT_ID=${OS_TENANT_ID:-ed51b98b40944d89a449592eb67431eb}
|
||||||
|
export OS_REGION_NAME=${OS_REGION_NAME:-RegionOne}
|
||||||
|
@ -24,3 +24,4 @@ export OS_PASSWORD=${OS_PASSWORD:-secretsecret}
|
|||||||
export OS_AUTH_URL=${OS_AUTH_URL:-http://192.168.123.100:5000/v2.0}
|
export OS_AUTH_URL=${OS_AUTH_URL:-http://192.168.123.100:5000/v2.0}
|
||||||
export OS_TENANT_NAME=${OS_TENANT_NAME:-admin}
|
export OS_TENANT_NAME=${OS_TENANT_NAME:-admin}
|
||||||
export OS_TENANT_ID=${OS_TENANT_ID:-ed51b98b40944d89a449592eb67431eb}
|
export OS_TENANT_ID=${OS_TENANT_ID:-ed51b98b40944d89a449592eb67431eb}
|
||||||
|
export OS_REGION_NAME=${OS_REGION_NAME:-RegionOne}
|
||||||
|
Loading…
Reference in New Issue
Block a user