deploy-rhsso.yml 225 B

1234567891011
  1. ---
  2. - name: Make sure RHSSO is deployed and configured
  3. hosts: workstation.lab.example.com
  4. gather_subset: min
  5. become: no
  6. roles:
  7. # - role: check-env
  8. # tags: check
  9. - role: deploy-rhsso
  10. tags: deploy
  11. ...