Commit 1d67b6ca authored by Jeff Lowdermilk's avatar Jeff Lowdermilk

Merge pull request #24617 from pnegahdar/dn_server_config

Allow DNS_SERVER_IP and DNS_DOMAIN to be configurable in GCE deploy
parents 1fe0e077 3575ab07
...@@ -91,8 +91,8 @@ RUNTIME_CONFIG="${KUBE_RUNTIME_CONFIG:-}" ...@@ -91,8 +91,8 @@ RUNTIME_CONFIG="${KUBE_RUNTIME_CONFIG:-}"
# Optional: Install cluster DNS. # Optional: Install cluster DNS.
ENABLE_CLUSTER_DNS="${KUBE_ENABLE_CLUSTER_DNS:-true}" ENABLE_CLUSTER_DNS="${KUBE_ENABLE_CLUSTER_DNS:-true}"
DNS_SERVER_IP="10.0.0.10" DNS_SERVER_IP="${KUBE_DNS_SERVER_IP:-10.0.0.10}"
DNS_DOMAIN="cluster.local" DNS_DOMAIN="${KUBE_DNS_DOMAIN:-cluster.local}"
DNS_REPLICAS=1 DNS_REPLICAS=1
# Optional: Install cluster docker registry. # Optional: Install cluster docker registry.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment