deploy-rhsso.yml 401 B

1234567891011121314151617181920
  1. ---
  2. - name: Deploy a RHSSO instance
  3. hosts: workstation.lab.example.com
  4. gather_subset: min
  5. become: no
  6. roles:
  7. - role: deploy-rhsso-operator
  8. tags: operator
  9. - role: deploy-rhsso-instance
  10. tags: keycloak
  11. - role: deploy-rhsso-crs
  12. tags:
  13. - realm
  14. - client
  15. - role: deploy-rhsso-population
  16. tags:
  17. - users
  18. - groups
  19. - roles
  20. ...