diff options
author | Russell Teague <rteague@redhat.com> | 2017-04-19 15:19:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-19 15:19:16 -0400 |
commit | 9ace041daaf1bca509f21499b812f4f3e96fdd80 (patch) | |
tree | 1a7b09b8e5fdaec7710fcdbaea708f1d4d2e8511 | |
parent | 14dbd7c24df84a0b13a79ce1901de221548442f5 (diff) | |
parent | 0204597e398e84e836ac665e384bd498ecf88543 (diff) | |
download | openshift-9ace041daaf1bca509f21499b812f4f3e96fdd80.tar.gz openshift-9ace041daaf1bca509f21499b812f4f3e96fdd80.tar.bz2 openshift-9ace041daaf1bca509f21499b812f4f3e96fdd80.tar.xz openshift-9ace041daaf1bca509f21499b812f4f3e96fdd80.zip |
Merge pull request #3936 from mtnbikenc/fix-ca-paths
BZ 1442942: Fix paths for file includes
-rw-r--r-- | playbooks/common/openshift-cluster/redeploy-certificates/ca.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/playbooks/common/openshift-cluster/redeploy-certificates/ca.yml b/playbooks/common/openshift-cluster/redeploy-certificates/ca.yml index 3b26abcc7..4fa7f9cdf 100644 --- a/playbooks/common/openshift-cluster/redeploy-certificates/ca.yml +++ b/playbooks/common/openshift-cluster/redeploy-certificates/ca.yml @@ -130,7 +130,7 @@ state: absent changed_when: false -- include: ../openshift-etcd/restart.yml +- include: ../../openshift-etcd/restart.yml # Update master config when ca-bundle not referenced. Services will be # restarted below after new CA certificate has been distributed. @@ -322,7 +322,7 @@ group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}" with_items: "{{ client_users }}" -- include: ../openshift-master/restart.yml +- include: ../../openshift-master/restart.yml - name: Distribute OpenShift CA certificate to nodes hosts: oo_nodes_to_config @@ -371,4 +371,4 @@ state: absent changed_when: false -- include: ../openshift-node/restart.yml +- include: ../../openshift-node/restart.yml |