summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/redeploy-certificates/router.yml
diff options
context:
space:
mode:
authorJan Chaloupka <jchaloup@redhat.com>2017-02-11 10:30:20 +0100
committerGitHub <noreply@github.com>2017-02-11 10:30:20 +0100
commit5444c0f474f3701f22ae8392d1ac192403c8b5b7 (patch)
treebb5d05ed9ecb1e9c20d1a9c4bc046fa8f47c818d /playbooks/common/openshift-cluster/redeploy-certificates/router.yml
parent9d25cb0280664f8bdef6247c8dc13520c90756da (diff)
parenta064a673ae40a4c5a62b6bf2d619d72bbc5fd967 (diff)
downloadopenshift-5444c0f474f3701f22ae8392d1ac192403c8b5b7.tar.gz
openshift-5444c0f474f3701f22ae8392d1ac192403c8b5b7.tar.bz2
openshift-5444c0f474f3701f22ae8392d1ac192403c8b5b7.tar.xz
openshift-5444c0f474f3701f22ae8392d1ac192403c8b5b7.zip
Merge pull request #3300 from ashcrow/oc-secret-module
WIP: oc secrets now done via oc_secret module
Diffstat (limited to 'playbooks/common/openshift-cluster/redeploy-certificates/router.yml')
-rw-r--r--playbooks/common/openshift-cluster/redeploy-certificates/router.yml12
1 files changed, 8 insertions, 4 deletions
diff --git a/playbooks/common/openshift-cluster/redeploy-certificates/router.yml b/playbooks/common/openshift-cluster/redeploy-certificates/router.yml
index a9e9f0915..707fb6424 100644
--- a/playbooks/common/openshift-cluster/redeploy-certificates/router.yml
+++ b/playbooks/common/openshift-cluster/redeploy-certificates/router.yml
@@ -7,6 +7,8 @@
command: mktemp -d /tmp/openshift-ansible-XXXXXX
register: mktemp
changed_when: false
+ roles:
+ - lib_openshift
- name: Copy admin client config(s)
command: >
@@ -45,10 +47,12 @@
- block:
- name: Delete existing router certificate secret
- command: >
- {{ openshift.common.client_binary }} delete secret/router-certs
- --config={{ mktemp.stdout }}/admin.kubeconfig
- -n default
+ oc_secret:
+ kubeconfig: "{{ mktemp.stdout }}/admin.kubeconfig"
+ name: router-certs
+ namespace: default
+ state: absent
+ run_once: true
- name: Remove router service annotations
command: >