blob: 1c8eb27ac517e22bc2c684e1c621528f74096d35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
- name: Check cert expirys
hosts: oo_etcd_to_config
vars:
openshift_certificate_expiry_show_all: yes
roles:
# Sets 'check_results' per host which contains health status for
# etcd, master and node certificates. We will use 'check_results'
# to determine if any certificates were expired prior to running
# this playbook. Service restarts will be skipped if any
# certificates were previously expired.
- role: openshift_certificate_expiry
- import_playbook: certificates-backup.yml
- import_playbook: certificates.yml
vars:
etcd_certificates_redeploy: true
|