summaryrefslogtreecommitdiffstats
path: root/roles/openshift_hosted/tasks
diff options
context:
space:
mode:
authorJulien Brochet <mewt.fr@gmail.com>2017-08-23 15:42:33 +0200
committerGitHub <noreply@github.com>2017-08-23 15:42:33 +0200
commitacbdf93530ed368c0f879b3eaaa8079754fb7272 (patch)
treee2afb096550c68d8aee1ebc595d37107160a196b /roles/openshift_hosted/tasks
parent470524c9154a3a69a7fe3fb385578bf80ee93558 (diff)
downloadopenshift-acbdf93530ed368c0f879b3eaaa8079754fb7272.tar.gz
openshift-acbdf93530ed368c0f879b3eaaa8079754fb7272.tar.bz2
openshift-acbdf93530ed368c0f879b3eaaa8079754fb7272.tar.xz
openshift-acbdf93530ed368c0f879b3eaaa8079754fb7272.zip
reverse order between router cert generation
Diffstat (limited to 'roles/openshift_hosted/tasks')
-rw-r--r--roles/openshift_hosted/tasks/router/router.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/roles/openshift_hosted/tasks/router/router.yml b/roles/openshift_hosted/tasks/router/router.yml
index eb91bac12..f2661bcef 100644
--- a/roles/openshift_hosted/tasks/router/router.yml
+++ b/roles/openshift_hosted/tasks/router/router.yml
@@ -18,6 +18,15 @@
openshift_hosted_router_selector: "{{ openshift.hosted.router.selector | default(None) }}"
openshift_hosted_router_image: "{{ openshift.hosted.router.registryurl }}"
+- name: Get the certificate contents for router
+ copy:
+ backup: True
+ dest: "/etc/origin/master/{{ item | basename }}"
+ src: "{{ item }}"
+ with_items: "{{ openshift_hosted_routers | oo_collect(attribute='certificate') |
+ oo_select_keys_from_list(['keyfile', 'certfile', 'cafile']) }}"
+ when: ( not openshift_hosted_router_create_certificate | bool ) or openshift_hosted_router_certificate != {}
+
# This is for when we desire a cluster signed cert
# The certificate is generated and placed in master_config_dir/
- block:
@@ -43,15 +52,6 @@
# End Block
when: ( openshift_hosted_router_create_certificate | bool ) and openshift_hosted_router_certificate == {}
-- name: Get the certificate contents for router
- copy:
- backup: True
- dest: "/etc/origin/master/{{ item | basename }}"
- src: "{{ item }}"
- with_items: "{{ openshift_hosted_routers | oo_collect(attribute='certificate') |
- oo_select_keys_from_list(['keyfile', 'certfile', 'cafile']) }}"
- when: ( not openshift_hosted_router_create_certificate | bool ) or openshift_hosted_router_certificate != {}
-
- name: Create the router service account(s)
oc_serviceaccount:
name: "{{ item.serviceaccount }}"