Browse Source
Fix incorrect syntax for secondary nodelocaldns manifest (#11952)
* Fix incorrect syntax
* Fix incorrect syntax
pull/11728/merge
Raul Butuc
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
roles/kubernetes-apps/ansible/vars/main.yml
|
|
@ -13,10 +13,10 @@ coredns_manifests: |
|
|
|
- coredns-sa.yml.j2 |
|
|
|
- coredns-svc.yml.j2 |
|
|
|
- "{{ dns_autoscaler_manifests if enable_dns_autoscaler else [] }}" |
|
|
|
- "{{ coredns-poddisruptionbudget.yml.j2 if coredns_pod_disruption_budget else [] }}" |
|
|
|
- "{{ 'coredns-poddisruptionbudget.yml.j2' if coredns_pod_disruption_budget else [] }}" |
|
|
|
|
|
|
|
nodelocaldns_manifests: |
|
|
|
- nodelocaldns-config.yml.j2 |
|
|
|
- nodelocaldns-daemonset.yml.j2 |
|
|
|
- nodelocaldns-sa.yml.j2 |
|
|
|
- "{{ nodelocaldns-second-daemonset.yml.j2 if enable_nodelocaldns_secondary else [] }}" |
|
|
|
- "{{ 'nodelocaldns-second-daemonset.yml.j2' if enable_nodelocaldns_secondary else [] }}" |