2016-02-11 22:08:16 +00:00
|
|
|
---
|
2016-05-13 13:08:28 +00:00
|
|
|
- name: Gen_tokens | copy tokens generation script
|
2016-05-06 17:17:59 +00:00
|
|
|
copy:
|
|
|
|
src: "kube-gen-token.sh"
|
|
|
|
dest: "{{ kube_script_dir }}/kube-gen-token.sh"
|
|
|
|
mode: 0700
|
|
|
|
run_once: yes
|
2021-03-24 00:26:05 +00:00
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2016-05-12 08:07:34 +00:00
|
|
|
when: gen_tokens|default(false)
|
2016-05-06 17:17:59 +00:00
|
|
|
|
2016-05-13 13:08:28 +00:00
|
|
|
- name: Gen_tokens | generate tokens for master components
|
2016-05-06 17:17:59 +00:00
|
|
|
command: "{{ kube_script_dir }}/kube-gen-token.sh {{ item[0] }}-{{ item[1] }}"
|
2016-02-11 22:08:16 +00:00
|
|
|
environment:
|
2016-05-06 17:17:59 +00:00
|
|
|
TOKEN_DIR: "{{ kube_token_dir }}"
|
2016-02-11 22:08:16 +00:00
|
|
|
with_nested:
|
|
|
|
- [ "system:kubectl" ]
|
2021-03-24 00:26:05 +00:00
|
|
|
- "{{ groups['kube_control_plane'] }}"
|
2016-02-11 22:08:16 +00:00
|
|
|
register: gentoken_master
|
|
|
|
changed_when: "'Added' in gentoken_master.stdout"
|
2016-05-06 17:17:59 +00:00
|
|
|
run_once: yes
|
2021-03-24 00:26:05 +00:00
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2016-05-12 08:07:34 +00:00
|
|
|
when: gen_tokens|default(false)
|
2016-02-11 22:08:16 +00:00
|
|
|
|
2016-05-13 13:08:28 +00:00
|
|
|
- name: Gen_tokens | generate tokens for node components
|
2016-05-06 17:17:59 +00:00
|
|
|
command: "{{ kube_script_dir }}/kube-gen-token.sh {{ item[0] }}-{{ item[1] }}"
|
2016-02-11 22:08:16 +00:00
|
|
|
environment:
|
2016-05-06 17:17:59 +00:00
|
|
|
TOKEN_DIR: "{{ kube_token_dir }}"
|
2016-02-11 22:08:16 +00:00
|
|
|
with_nested:
|
|
|
|
- [ 'system:kubelet' ]
|
2021-04-29 12:20:50 +00:00
|
|
|
- "{{ groups['kube_node'] }}"
|
2016-02-11 22:08:16 +00:00
|
|
|
register: gentoken_node
|
|
|
|
changed_when: "'Added' in gentoken_node.stdout"
|
2016-05-06 17:17:59 +00:00
|
|
|
run_once: yes
|
2021-03-24 00:26:05 +00:00
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2016-05-12 08:07:34 +00:00
|
|
|
when: gen_tokens|default(false)
|
2016-05-06 17:17:59 +00:00
|
|
|
|
2020-07-28 08:39:08 +00:00
|
|
|
- name: Gen_tokens | Get list of tokens from first master
|
|
|
|
command: "find {{ kube_token_dir }} -maxdepth 1 -type f"
|
2016-05-06 17:17:59 +00:00
|
|
|
register: tokens_list
|
2017-02-06 18:13:21 +00:00
|
|
|
check_mode: no
|
2021-03-24 00:26:05 +00:00
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2017-03-15 11:00:42 +00:00
|
|
|
run_once: true
|
2016-05-12 08:07:34 +00:00
|
|
|
when: sync_tokens|default(false)
|
2016-05-06 17:17:59 +00:00
|
|
|
|
2020-08-05 14:56:28 +00:00
|
|
|
- name: Gen_tokens | Gather tokens
|
|
|
|
shell: "set -o pipefail && tar cfz - {{ tokens_list.stdout_lines | join(' ') }} | base64 --wrap=0"
|
2018-10-16 06:47:04 +00:00
|
|
|
args:
|
|
|
|
warn: false
|
2020-08-05 14:56:28 +00:00
|
|
|
executable: /bin/bash
|
2016-10-21 11:21:46 +00:00
|
|
|
register: tokens_data
|
2017-02-06 18:13:21 +00:00
|
|
|
check_mode: no
|
2021-03-24 00:26:05 +00:00
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2016-10-21 11:21:46 +00:00
|
|
|
run_once: true
|
2016-05-12 08:07:34 +00:00
|
|
|
when: sync_tokens|default(false)
|
2016-02-11 22:08:16 +00:00
|
|
|
|
2020-08-05 14:56:28 +00:00
|
|
|
- name: Gen_tokens | Copy tokens on masters
|
|
|
|
shell: "set -o pipefail && echo '{{ tokens_data.stdout|quote }}' | base64 -d | tar xz -C /"
|
|
|
|
args:
|
|
|
|
executable: /bin/bash
|
2019-04-29 06:00:20 +00:00
|
|
|
when:
|
2021-03-24 00:26:05 +00:00
|
|
|
- inventory_hostname in groups['kube_control_plane']
|
2019-04-29 06:00:20 +00:00
|
|
|
- sync_tokens|default(false)
|
2021-03-24 00:26:05 +00:00
|
|
|
- inventory_hostname != groups['kube_control_plane'][0]
|
2019-04-29 06:00:20 +00:00
|
|
|
- tokens_data.stdout
|