install_support.yaml 734 B

1234567891011121314151617181920212223
  1. ---
  2. - name: Check control node to see if htpasswd is installed
  3. local_action: command which htpasswd
  4. register: htpasswd_check
  5. failed_when: no
  6. changed_when: no
  7. - fail: msg="'htpasswd' is unavailable. Please install httpd-tools on the control node"
  8. when: htpasswd_check.rc == 1
  9. - name: Check control node to see if keytool is installed
  10. local_action: command which keytool
  11. register: keytool_check
  12. failed_when: no
  13. changed_when: no
  14. - fail: msg="'keytool' is unavailable. Please install java-1.8.0-openjdk-headless on the control node"
  15. when: keytool_check.rc == 1
  16. - include: generate_certificates.yaml
  17. - include: generate_serviceaccounts.yaml
  18. - include: generate_services.yaml
  19. - include: generate_rolebindings.yaml