Merge pull request #24617 from pnegahdar/dn_server_config

Allow DNS_SERVER_IP and DNS_DOMAIN to be configurable in GCE deploy
This commit is contained in:
Jeff Lowdermilk 2016-05-13 10:05:36 -07:00
commit 1d67b6ca81

View File

@ -91,8 +91,8 @@ RUNTIME_CONFIG="${KUBE_RUNTIME_CONFIG:-}"
# Optional: Install cluster DNS.
ENABLE_CLUSTER_DNS="${KUBE_ENABLE_CLUSTER_DNS:-true}"
DNS_SERVER_IP="10.0.0.10"
DNS_DOMAIN="cluster.local"
DNS_SERVER_IP="${KUBE_DNS_SERVER_IP:-10.0.0.10}"
DNS_DOMAIN="${KUBE_DNS_DOMAIN:-cluster.local}"
DNS_REPLICAS=1
# Optional: Install cluster docker registry.