Replace cluster_name by dns_domain (#7923)
`cluster_name` defaults to `dns_domain` value (see [here][1] and [here][2]) but they could have different values. `dns_domain` should be used here instead of `cluster_name` because the DNS resolution is configured to use `dns_domain`. [1]:0ef7af76bc/roles/kubespray-defaults/defaults/main.yaml (L104)
[2]:1afdb05ea9/inventory/sample/group_vars/k8s_cluster/k8s-cluster.yml (L196)
This commit is contained in:
parent
c7529270ff
commit
507091ec8b
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ spec:
|
||||||
imagePullPolicy: {{ k8s_image_pull_policy }}
|
imagePullPolicy: {{ k8s_image_pull_policy }}
|
||||||
env:
|
env:
|
||||||
- name: REGISTRY_HOST
|
- name: REGISTRY_HOST
|
||||||
value: registry.{{ registry_namespace }}.svc.{{ cluster_name }}
|
value: registry.{{ registry_namespace }}.svc.{{ dns_domain }}
|
||||||
- name: REGISTRY_PORT
|
- name: REGISTRY_PORT
|
||||||
value: "{{ registry_port }}"
|
value: "{{ registry_port }}"
|
||||||
ports:
|
ports:
|
||||||
|
|
Loading…
Reference in a new issue