main.yml 464 B

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