migrate_idproviders.yml 648 B

123456789101112131415161718
  1. ---
  2. # This file is to update htpass_provider filename path as it now must be
  3. # hard-coded to /etc/origin/master/htpasswd
  4. # Recreate the htpass file in the new location.
  5. - import_tasks: htpass_provider.yml
  6. # lib_utils_mutate_htpass_provider is a customer filter in
  7. # roles/lib_utils/filter_plugins/oo_filters.py
  8. - name: modify master id providers
  9. yedit:
  10. src: /etc/origin/master/master-config.yaml
  11. edits:
  12. - key: oauthConfig.identityProviders
  13. value: "{{ openshift_master_existing_idproviders | lib_utils_mutate_htpass_provider }}"
  14. when:
  15. - openshift_master_existing_idproviders is defined
  16. - openshift_master_manage_htpasswd