2016-04-07 15:08:39 +00:00
|
|
|
---
|
2016-05-13 13:08:28 +00:00
|
|
|
- name: "Check_certs | check if the certs have already been generated on first master"
|
2017-03-03 13:21:01 +00:00
|
|
|
find:
|
|
|
|
paths: "{{ kube_cert_dir }}"
|
|
|
|
patterns: "*.pem"
|
2017-03-15 11:00:42 +00:00
|
|
|
get_checksum: true
|
2016-04-11 07:33:08 +00:00
|
|
|
delegate_to: "{{groups['kube-master'][0]}}"
|
2016-04-07 15:08:39 +00:00
|
|
|
register: kubecert_master
|
|
|
|
run_once: true
|
|
|
|
|
2016-12-27 11:02:45 +00:00
|
|
|
- name: "Check_certs | Set default value for 'sync_certs', 'gen_certs', and 'secret_changed' to false"
|
2016-04-07 15:08:39 +00:00
|
|
|
set_fact:
|
|
|
|
sync_certs: false
|
|
|
|
gen_certs: false
|
2016-12-27 11:02:45 +00:00
|
|
|
secret_changed: false
|
2016-04-07 15:08:39 +00:00
|
|
|
|
2017-03-03 13:21:01 +00:00
|
|
|
- name: "Check certs | check if a cert already exists on node"
|
2016-04-07 15:08:39 +00:00
|
|
|
stat:
|
2016-12-27 11:02:45 +00:00
|
|
|
path: "{{ kube_cert_dir }}/{{ item }}"
|
2017-03-03 13:21:01 +00:00
|
|
|
register: kubecert_node
|
2016-12-27 11:02:45 +00:00
|
|
|
with_items:
|
|
|
|
- ca.pem
|
|
|
|
- node-{{ inventory_hostname }}-key.pem
|
2016-04-07 15:08:39 +00:00
|
|
|
|
2017-03-03 13:21:01 +00:00
|
|
|
- name: "Check_certs | Set 'gen_certs' to true"
|
|
|
|
set_fact:
|
|
|
|
gen_certs: true
|
|
|
|
when: "not item in kubecert_master.files|map(attribute='path') | list"
|
|
|
|
run_once: true
|
|
|
|
with_items: >-
|
|
|
|
['{{ kube_cert_dir }}/ca.pem',
|
|
|
|
{% for host in groups['k8s-cluster'] %}
|
|
|
|
'{{ kube_cert_dir }}/node-{{ host }}-key.pem'
|
|
|
|
{% if not loop.last %}{{','}}{% endif %}
|
|
|
|
{% endfor %}]
|
|
|
|
|
|
|
|
- name: "Check_certs | Set 'gen_node_certs' to true"
|
|
|
|
set_fact:
|
|
|
|
gen_node_certs: |-
|
|
|
|
{
|
|
|
|
{% set existing_certs = kubecert_master.files|map(attribute='path')|list|sort %}
|
|
|
|
{% for host in groups['k8s-cluster'] -%}
|
|
|
|
{% set host_cert = "%s/node-%s-key.pem"|format(kube_cert_dir, host) %}
|
|
|
|
{% if host_cert in existing_certs -%}
|
|
|
|
"{{ host }}": False,
|
|
|
|
{% else -%}
|
|
|
|
"{{ host }}": True,
|
|
|
|
{% endif -%}
|
|
|
|
{% endfor %}
|
|
|
|
}
|
|
|
|
run_once: true
|
|
|
|
|
|
|
|
|
2016-04-07 15:08:39 +00:00
|
|
|
- name: "Check_certs | Set 'sync_certs' to true"
|
|
|
|
set_fact:
|
|
|
|
sync_certs: true
|
|
|
|
when: >-
|
|
|
|
{%- set certs = {'sync': False} -%}
|
2017-03-03 13:21:01 +00:00
|
|
|
{% if gen_node_certs[inventory_hostname] or
|
|
|
|
(not kubecert_node.results[0].stat.exists|default(False)) or
|
|
|
|
(not kubecert_node.results[1].stat.exists|default(False)) or
|
2017-03-15 11:00:42 +00:00
|
|
|
(kubecert_node.results[1].stat.checksum|default('') != kubecert_master.files|selectattr("path", "equalto", kubecert_node.results[1].stat.path)|map(attribute="checksum")|first|default('')) -%}
|
2017-03-03 13:21:01 +00:00
|
|
|
{%- set _ = certs.update({'sync': True}) -%}
|
|
|
|
{% endif %}
|
2016-04-07 15:08:39 +00:00
|
|
|
{{ certs.sync }}
|
2017-03-03 13:21:01 +00:00
|
|
|
|