mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-09 19:58:07 +03:00
fixes the certs issue when masters or not in the kube-node group
This commit is contained in:
@@ -4,7 +4,8 @@
|
||||
src: "openssl.conf.j2"
|
||||
dest: "{{ kube_config_dir }}/openssl.conf"
|
||||
run_once: yes
|
||||
when: inventory_hostname == groups['kube-master'][0] and gen_certs|default(false)
|
||||
delegate_to: "{{groups['kube-master'][0]}}"
|
||||
when: gen_certs|default(false)
|
||||
|
||||
- name: certs | copy certs generation script
|
||||
copy:
|
||||
@@ -12,12 +13,14 @@
|
||||
dest: "{{ kube_script_dir }}/make-ssl.sh"
|
||||
mode: 0700
|
||||
run_once: yes
|
||||
when: inventory_hostname == groups['kube-master'][0] and gen_certs|default(false)
|
||||
delegate_to: "{{groups['kube-master'][0]}}"
|
||||
when: gen_certs|default(false)
|
||||
|
||||
- name: certs | run cert generation script
|
||||
command: "{{ kube_script_dir }}/make-ssl.sh -f {{ kube_config_dir }}/openssl.conf -d {{ kube_cert_dir }}"
|
||||
run_once: yes
|
||||
when: inventory_hostname == groups['kube-master'][0] and gen_certs|default(false)
|
||||
delegate_to: "{{groups['kube-master'][0]}}"
|
||||
when: gen_certs|default(false)
|
||||
notify: set secret_changed
|
||||
|
||||
- set_fact:
|
||||
|
||||
Reference in New Issue
Block a user