2022-11-26 15:19:16 +08:00
|
|
|
- block:
|
|
|
|
- name: 准备 DNS的部署文件
|
|
|
|
template: src=dns/coredns.yaml.j2 dest={{ cluster_dir }}/yml/coredns.yaml
|
2021-01-11 19:02:34 +08:00
|
|
|
|
2022-11-27 20:42:58 +08:00
|
|
|
- name: 删除coredns部署
|
|
|
|
shell: "{{ base_dir }}/bin/kubectl delete -f {{ cluster_dir }}/yml/coredns.yaml || echo true; sleep 3"
|
|
|
|
tags: force_change_certs
|
|
|
|
when: 'CHANGE_CA|bool'
|
|
|
|
|
2022-11-26 15:19:16 +08:00
|
|
|
- name: 创建coredns部署
|
|
|
|
shell: "{{ base_dir }}/bin/kubectl apply -f {{ cluster_dir }}/yml/coredns.yaml"
|
2022-11-27 20:42:58 +08:00
|
|
|
tags: force_change_certs
|
2022-11-26 15:19:16 +08:00
|
|
|
when: 'dns_install == "yes"'
|