diff options
author | Scott Dodson <sdodson@redhat.com> | 2015-08-27 17:45:14 -0400 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2015-08-28 11:50:10 -0400 |
commit | 05c5d6e1a0de2e7a5f5cb509b08981ba9b1ec69b (patch) | |
tree | e22cbfe1626dfeb3d310c9f4e72de35d62c626d9 /roles | |
parent | e6c157be1208c46d4fd63f402517aec19971df12 (diff) | |
download | openshift-05c5d6e1a0de2e7a5f5cb509b08981ba9b1ec69b.tar.gz openshift-05c5d6e1a0de2e7a5f5cb509b08981ba9b1ec69b.tar.bz2 openshift-05c5d6e1a0de2e7a5f5cb509b08981ba9b1ec69b.tar.xz openshift-05c5d6e1a0de2e7a5f5cb509b08981ba9b1ec69b.zip |
Add cockpit-ws with cockpit-kubernetes plugin
Diffstat (limited to 'roles')
-rw-r--r-- | roles/cockpit/defaults/main.yml | 5 | ||||
-rw-r--r-- | roles/cockpit/meta/main.yml | 15 | ||||
-rw-r--r-- | roles/cockpit/tasks/main.yml | 16 |
3 files changed, 36 insertions, 0 deletions
diff --git a/roles/cockpit/defaults/main.yml b/roles/cockpit/defaults/main.yml new file mode 100644 index 000000000..ffd55f1dd --- /dev/null +++ b/roles/cockpit/defaults/main.yml @@ -0,0 +1,5 @@ +--- +os_firewall_use_firewalld: false +os_firewall_allow: +- service: cockpit-ws + port: 9090/tcp diff --git a/roles/cockpit/meta/main.yml b/roles/cockpit/meta/main.yml new file mode 100644 index 000000000..1e3948b19 --- /dev/null +++ b/roles/cockpit/meta/main.yml @@ -0,0 +1,15 @@ +--- +galaxy_info: + author: Scott Dodson + description: Deploy and Enable cockpit-ws plus optional plugins + company: Red Hat, Inc. + license: Apache License, Version 2.0 + min_ansible_version: 1.7 + platforms: + - name: EL + versions: + - 7 + categories: + - cloud +dependencies: + - { role: os_firewall } diff --git a/roles/cockpit/tasks/main.yml b/roles/cockpit/tasks/main.yml new file mode 100644 index 000000000..875cbad21 --- /dev/null +++ b/roles/cockpit/tasks/main.yml @@ -0,0 +1,16 @@ +--- +- name: Install cockpit-ws + yum: + name: "{{ item }}" + state: present + with_items: + - cockpit-ws + - cockpit-shell + - cockpit-bridge + - "{{ cockpit_plugins }}" + +- name: Enable cockpit-ws + service: + name: cockpit.socket + enabled: true + state: started |