summaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2017-10-04 16:30:31 -0700
committerGitHub <noreply@github.com>2017-10-04 16:30:31 -0700
commit30daf85143720c1350a197a8b40f9f1dbff34f29 (patch)
tree74cd101e291de9d950a738f836f0640639d57291 /roles
parentcb7505c0f76f8388b49b36550376fbae1654c04f (diff)
parent2c483c16492dda53c2ffff5b6b84172046d58c67 (diff)
downloadopenshift-30daf85143720c1350a197a8b40f9f1dbff34f29.tar.gz
openshift-30daf85143720c1350a197a8b40f9f1dbff34f29.tar.bz2
openshift-30daf85143720c1350a197a8b40f9f1dbff34f29.tar.xz
openshift-30daf85143720c1350a197a8b40f9f1dbff34f29.zip
Merge pull request #5643 from mtnbikenc/refactor-certificates
Automatic merge from submit-queue. Refactor certificate playbooks for checkpointing The recent breakout of the certificate playbooks resulted in the certificate portion of the install to be outside of the component checkpoint. This PR moves the certificate playbooks inside their respective config.yml playbook. Removes an unused tasks file from the openshift_named_certificates role.
Diffstat (limited to 'roles')
-rw-r--r--roles/openshift_named_certificates/tasks/named_certificates.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/roles/openshift_named_certificates/tasks/named_certificates.yml b/roles/openshift_named_certificates/tasks/named_certificates.yml
deleted file mode 100644
index 7b097b443..000000000
--- a/roles/openshift_named_certificates/tasks/named_certificates.yml
+++ /dev/null
@@ -1,32 +0,0 @@
----
-- name: Clear named certificates
- file:
- path: "{{ named_certs_dir }}"
- state: absent
- when: overwrite_named_certs | bool
-
-- name: Ensure named certificate directory exists
- file:
- path: "{{ named_certs_dir }}"
- state: directory
- mode: 0700
-
-- name: Land named certificates
- copy:
- src: "{{ item.certfile }}"
- dest: "{{ named_certs_dir }}"
- with_items: "{{ openshift_master_named_certificates | default([]) }}"
-
-- name: Land named certificate keys
- copy:
- src: "{{ item.keyfile }}"
- dest: "{{ named_certs_dir }}"
- mode: 0600
- with_items: "{{ openshift_master_named_certificates | default([]) }}"
-
-- name: Land named CA certificates
- copy:
- src: "{{ item }}"
- dest: "{{ named_certs_dir }}"
- mode: 0600
- with_items: "{{ openshift_master_named_certificates | default([]) | oo_collect('cafile') }}"