summaryrefslogtreecommitdiffstats
path: root/playbooks/openstack/custom-actions/add-rhn-pools.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-rhn-pools.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-rhn-pools.yml')
-rw-r--r--playbooks/openstack/custom-actions/add-rhn-pools.yml13
1 files changed, 0 insertions, 13 deletions
diff --git a/playbooks/openstack/custom-actions/add-rhn-pools.yml b/playbooks/openstack/custom-actions/add-rhn-pools.yml
deleted file mode 100644
index d17c1e335..000000000
--- a/playbooks/openstack/custom-actions/add-rhn-pools.yml
+++ /dev/null
@@ -1,13 +0,0 @@
----
-- hosts: cluster_hosts
- vars:
- rhn_pools: []
- tasks:
- - name: Attach additional RHN pools
- become: true
- with_items: "{{ rhn_pools }}"
- command: "/usr/bin/subscription-manager attach --pool={{ item }}"
- register: attach_rhn_pools_result
- until: attach_rhn_pools_result.rc == 0
- retries: 10
- delay: 1