diff options
author | Andrew Butcher <abutcher@afrolegs.com> | 2017-03-02 09:58:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-02 09:58:49 -0500 |
commit | 68aa6f269a6b0c4bf9af5f30d0dfb5ac6428b575 (patch) | |
tree | 31deced1507e0328411a85627bd398cdefcef41a /roles/openshift_hosted | |
parent | 170819880c4c9a6d699f4c63537426fa50d487f0 (diff) | |
parent | 8621904168b5e99cbf03158d888e6883e627e1e9 (diff) | |
download | openshift-68aa6f269a6b0c4bf9af5f30d0dfb5ac6428b575.tar.gz openshift-68aa6f269a6b0c4bf9af5f30d0dfb5ac6428b575.tar.bz2 openshift-68aa6f269a6b0c4bf9af5f30d0dfb5ac6428b575.tar.xz openshift-68aa6f269a6b0c4bf9af5f30d0dfb5ac6428b575.zip |
Merge pull request #3533 from kwoodson/registry_updates
Fixed error handling when oc adm ca create-server-cert fails. Fixed a logic error in secure.
Diffstat (limited to 'roles/openshift_hosted')
-rw-r--r-- | roles/openshift_hosted/tasks/registry/secure.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_hosted/tasks/registry/secure.yml b/roles/openshift_hosted/tasks/registry/secure.yml index bd513b943..f9ea2ebeb 100644 --- a/roles/openshift_hosted/tasks/registry/secure.yml +++ b/roles/openshift_hosted/tasks/registry/secure.yml @@ -8,7 +8,7 @@ backup: True dest: "/etc/origin/master/named_certificates/{{ item.value | basename }}" src: "{{ item.value }}" - when: item.key in ['certfile', 'keyfile', 'cafile'] and item.value is not None + when: item.key in ['certfile', 'keyfile', 'cafile'] and item.value with_dict: "{{ openshift_hosted_registry_routecertificates }}" # When certificates are defined we will create the reencrypt |