check_existing_config.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. ---
  2. # We need to scrape existing config and check some items.
  3. - stat:
  4. path: "/etc/origin/master/master-config.yaml"
  5. register: master_config_path_check
  6. - slurp:
  7. src: "/etc/origin/master/master-config.yaml"
  8. register: openshift_master_config_encoded_contents
  9. when: master_config_path_check.stat.exists
  10. # The existing config will also be used to determine first node selector on
  11. # first master.
  12. - set_fact:
  13. l_existing_config_master_config: "{{ (openshift_master_config_encoded_contents.content | b64decode | from_yaml) }}"
  14. when:
  15. - openshift_master_config_encoded_contents is defined
  16. - openshift_master_config_encoded_contents.content is defined
  17. - name: Check for file paths outside of /etc/origin/master in master's config
  18. master_check_paths_in_config:
  19. mastercfg: "{{ l_existing_config_master_config }}"
  20. when: l_existing_config_master_config is defined
  21. - set_fact:
  22. # Take list of existing IDProviders so we can use/modify them later,
  23. # especially for migrating htpasswd file.
  24. openshift_master_existing_idproviders: "{{ l_existing_config_master_config.oauthConfig.identityProviders }}"
  25. when:
  26. - l_existing_config_master_config is defined
  27. - l_existing_config_master_config.oauthConfig is defined
  28. - l_existing_config_master_config.oauthConfig.identityProviders is defined