diff options
author | Thomas Wiest <twiest@redhat.com> | 2015-05-27 15:05:13 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@redhat.com> | 2015-05-27 16:20:00 -0400 |
commit | 8fc2fe0b7ecf71b675158eabcc00a3a14218abe2 (patch) | |
tree | 3a96ee3547c7a5a66c8ca4b7afb71263ba8a28aa /roles/etcd/tasks | |
parent | 551562cd54f06db6e96e6f8d8986bc08a27c7d8a (diff) | |
download | openshift-8fc2fe0b7ecf71b675158eabcc00a3a14218abe2.tar.gz openshift-8fc2fe0b7ecf71b675158eabcc00a3a14218abe2.tar.bz2 openshift-8fc2fe0b7ecf71b675158eabcc00a3a14218abe2.tar.xz openshift-8fc2fe0b7ecf71b675158eabcc00a3a14218abe2.zip |
Removed cloud.rb and it's associated libraries as it's no longer used. Also removed etcd role.
Diffstat (limited to 'roles/etcd/tasks')
-rw-r--r-- | roles/etcd/tasks/main.yml | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/roles/etcd/tasks/main.yml b/roles/etcd/tasks/main.yml deleted file mode 100644 index 062d2e8a9..000000000 --- a/roles/etcd/tasks/main.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -- name: Install etcd - yum: pkg=etcd state=installed disable_gpg_check=yes - -- name: Install etcdctl - yum: pkg=etcdctl state=installed disable_gpg_check=yes - -- name: Write etcd global config file - template: src=etcd.conf.j2 dest=/etc/etcd/etcd.conf - notify: - - restart etcd - -- name: Open firewalld port for etcd - firewalld: port=4001/tcp permanent=false state=enabled - -- name: Save firewalld port for etcd - firewalld: port=4001/tcp permanent=true state=enabled - -- name: Enable etcd - service: name=etcd enabled=yes state=started |