Commit 3575ab07 authored by Parham Negahdar's avatar Parham Negahdar

Allow KUBE_DNS_SERVER_IP and DNS_DOMAIN to be configurable in GCE deploy

parent 6e99624d
...@@ -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