check_existing_config.yml 1.4 KB

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