Add description of k8s dns to guestbook (#5201)
Going through the guestbook tutorial for the first time, the deployment configuration mentioned that whether my configuration included a DNS service would dictate which env value I used for the `GET_HOSTS_FROM` variable. According to https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/, k8s includes DNS by default starting with v1.3. Add this additional info to help the user better understand when DNS may/may not be enabled.
This commit is contained in:
committed by
Steve Perry
parent
d13c10d0ff
commit
0a56b9db51
@@ -20,10 +20,13 @@ spec:
|
|||||||
env:
|
env:
|
||||||
- name: GET_HOSTS_FROM
|
- name: GET_HOSTS_FROM
|
||||||
value: dns
|
value: dns
|
||||||
# If your cluster config does not include a dns service, then to
|
# Using `GET_HOSTS_FROM=dns` requires your cluster to
|
||||||
# instead access environment variables to find service host
|
# provide a dns service. As of Kubernetes 1.3, DNS is a built-in
|
||||||
# info, comment out the 'value: dns' line above, and uncomment the
|
# service launched automatically. However, if the cluster you are using
|
||||||
# line below:
|
# does not have a built-in DNS service, you can instead
|
||||||
|
# instead access an environment variable to find the master
|
||||||
|
# service's host. To do so, comment out the 'value: dns' line above, and
|
||||||
|
# uncomment the line below:
|
||||||
# value: env
|
# value: env
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 80
|
- containerPort: 80
|
||||||
|
|||||||
@@ -21,9 +21,12 @@ spec:
|
|||||||
env:
|
env:
|
||||||
- name: GET_HOSTS_FROM
|
- name: GET_HOSTS_FROM
|
||||||
value: dns
|
value: dns
|
||||||
# If your cluster config does not include a dns service, then to
|
# Using `GET_HOSTS_FROM=dns` requires your cluster to
|
||||||
|
# provide a dns service. As of Kubernetes 1.3, DNS is a built-in
|
||||||
|
# service launched automatically. However, if the cluster you are using
|
||||||
|
# does not have a built-in DNS service, you can instead
|
||||||
# instead access an environment variable to find the master
|
# instead access an environment variable to find the master
|
||||||
# service's host, comment out the 'value: dns' line above, and
|
# service's host. To do so, comment out the 'value: dns' line above, and
|
||||||
# uncomment the line below:
|
# uncomment the line below:
|
||||||
# value: env
|
# value: env
|
||||||
ports:
|
ports:
|
||||||
|
|||||||
Reference in New Issue
Block a user