diff options
author | Tim Bielawa <tbielawa@redhat.com> | 2016-12-15 12:10:28 -0800 |
---|---|---|
committer | Tim Bielawa <tbielawa@redhat.com> | 2016-12-19 08:17:27 -0800 |
commit | 09162873c8c504b795735e1060fe4fae6a574b5e (patch) | |
tree | 907b8c0ef0b6e91ecbbb41491d01012499b27e31 /roles | |
parent | f9731780168e117e20471069f32a89056ac07d45 (diff) | |
download | openshift-09162873c8c504b795735e1060fe4fae6a574b5e.tar.gz openshift-09162873c8c504b795735e1060fe4fae6a574b5e.tar.bz2 openshift-09162873c8c504b795735e1060fe4fae6a574b5e.tar.xz openshift-09162873c8c504b795735e1060fe4fae6a574b5e.zip |
Update the openshift-certificate-expiry README to reflect latest
changes
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_certificate_expiry/README.md | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/roles/openshift_certificate_expiry/README.md b/roles/openshift_certificate_expiry/README.md index d44438332..a88470bdd 100644 --- a/roles/openshift_certificate_expiry/README.md +++ b/roles/openshift_certificate_expiry/README.md @@ -9,7 +9,7 @@ include: * Master/Node Service Certificates * Router/Registry Service Certificates from etcd secrets * Master/Node/Router/Registry/Admin `kubeconfig`s -* Etcd certificates +* Etcd certificates (including embedded) This role pairs well with the redeploy certificates playbook: @@ -111,12 +111,16 @@ There are two top-level keys in the saved JSON results, `data` and `summary`. The `data` key is a hash where the keys are the names of each host -examined and the values are the check results for each respective -host. +examined and the values are the check results for the certificates +identified on each respective host. -The `summary` key is a hash that summarizes the number of certificates -expiring within the configured warning window and the number of -already expired certificates. +The `summary` key is a hash that summarizes the total number of +certificates: + +* examined on the entire cluster +* OK +* expiring within the configured warning window +* already expired The example below is abbreviated to save space: @@ -193,7 +197,9 @@ The example below is abbreviated to save space: }, "summary": { "warning": 6, - "expired": 0 + "expired": 0, + "total": 7, + "ok": 1 } } ``` |