summaryrefslogtreecommitdiffstats
path: root/playbooks/openstack/custom-actions/add-cas.yml
diff options
context:
space:
mode:
authorTomas Sedovic <tomas@sedovic.cz>2017-10-27 17:29:39 +0200
committerTomas Sedovic <tomas@sedovic.cz>2017-11-07 14:35:46 +1100
commitb1e4629ae3e86c59503ac29a781a62a8e75c14f2 (patch)
tree58f6ff5f4ac2ad5dfc4409567eec6f6575c52b90 /playbooks/openstack/custom-actions/add-cas.yml
parent63fb0c74fcb0adf4cd3b0b2b5d30e34e29a58796 (diff)
downloadopenshift-b1e4629ae3e86c59503ac29a781a62a8e75c14f2.tar.gz
openshift-b1e4629ae3e86c59503ac29a781a62a8e75c14f2.tar.bz2
openshift-b1e4629ae3e86c59503ac29a781a62a8e75c14f2.tar.xz
openshift-b1e4629ae3e86c59503ac29a781a62a8e75c14f2.zip
Remove the openstack custom-actions for now
They're duplicating a lot of functionality that's already in openshift-ansible and they're not actually used from the provisioning playbooks. We'll revisit them later.
Diffstat (limited to 'playbooks/openstack/custom-actions/add-cas.yml')
-rw-r--r--playbooks/openstack/custom-actions/add-cas.yml13
1 files changed, 0 insertions, 13 deletions
diff --git a/playbooks/openstack/custom-actions/add-cas.yml b/playbooks/openstack/custom-actions/add-cas.yml
deleted file mode 100644
index b2c195f91..000000000
--- a/playbooks/openstack/custom-actions/add-cas.yml
+++ /dev/null
@@ -1,13 +0,0 @@
----
-- hosts: cluster_hosts
- become: true
- vars:
- ca_files: []
- tasks:
- - name: Copy CAs to the trusted CAs location
- with_items: "{{ ca_files }}"
- copy:
- src: "{{ item }}"
- dest: /etc/pki/ca-trust/source/anchors/
- - name: Update trusted CAs
- shell: 'update-ca-trust enable && update-ca-trust extract'