main.yml 455 B

1234567891011121314151617181920
  1. ---
  2. - name: setup firewall
  3. import_tasks: firewall.yml
  4. - name: Install cockpit-ws
  5. package: name={{ item }} state=present
  6. with_items:
  7. - cockpit-ws
  8. - cockpit-system
  9. - cockpit-bridge
  10. - cockpit-docker
  11. - "{{ cockpit_plugins }}"
  12. when: not openshift.common.is_containerized | bool
  13. - name: Enable cockpit-ws
  14. systemd:
  15. name: cockpit.socket
  16. enabled: true
  17. state: started
  18. when: not openshift.common.is_containerized | bool