summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/redeploy-certificates/etcd.yml
blob: 2963a5940022475cd177061189a814e236136f3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
- name: Backup and remove generated etcd certificates
  hosts: oo_first_etcd
  any_errors_fatal: true
  roles:
    - etcd_common
  post_tasks:
    - name: Determine if generated etcd certificates exist
      stat:
        path: "{{ etcd_conf_dir }}/generated_certs"
      register: etcd_generated_certs_dir_stat
    - name: Backup generated etcd certificates
      command: >
        tar -czf {{ etcd_conf_dir }}/etcd-generated-certificate-backup-{{ ansible_date_time.epoch }}.tgz
        {{ etcd_conf_dir }}/generated_certs
      args:
        warn: no
      when: etcd_generated_certs_dir_stat.stat.exists | bool
    - name: Remove generated etcd certificates
      file:
        path: "{{ item }}"
        state: absent
      with_items:
        - "{{ etcd_conf_dir }}/generated_certs"

- name: Backup and removed deployed etcd certificates
  hosts: oo_etcd_to_config
  any_errors_fatal: true
  roles:
    - etcd_common
  post_tasks:
    - name: Backup etcd certificates
      command: >
        tar -czvf /etc/etcd/etcd-server-certificate-backup-{{ ansible_date_time.epoch }}.tgz
        {{ etcd_conf_dir }}/ca.crt
        {{ etcd_conf_dir }}/server.crt
        {{ etcd_conf_dir }}/server.key
        {{ etcd_conf_dir }}/peer.crt
        {{ etcd_conf_dir }}/peer.key
      args:
        warn: no

- name: Redeploy etcd certificates
  hosts: oo_etcd_to_config
  any_errors_fatal: true
  roles:
    - role: openshift_etcd_server_certificates
      etcd_certificates_redeploy: true
      etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
      etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"
      etcd_certificates_etcd_hosts: "{{ groups.oo_etcd_to_config | default([], true) }}"
      openshift_ca_host: "{{ groups.oo_first_master.0 }}"

- name: Redeploy etcd client certificates for masters
  hosts: oo_masters_to_config
  any_errors_fatal: true
  roles:
    - role: openshift_etcd_client_certificates
      etcd_certificates_redeploy: true
      etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
      etcd_cert_subdir: "openshift-master-{{ openshift.common.hostname }}"
      etcd_cert_config_dir: "{{ openshift.common.config_base }}/master"
      etcd_cert_prefix: "master.etcd-"
      openshift_ca_host: "{{ groups.oo_first_master.0 }}"
      openshift_master_count: "{{ openshift.master.master_count | default(groups.oo_masters | length) }}"
      when: groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config