install.yml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. ---
  2. - name: Ensure openshift-console project exists
  3. oc_project:
  4. name: openshift-console
  5. state: present
  6. node_selector:
  7. - ""
  8. - name: Make temp directory for console templates
  9. command: mktemp -d /tmp/console-ansible-XXXXXX
  10. register: mktemp
  11. changed_when: False
  12. - name: Copy admin client config
  13. command: >
  14. cp {{ openshift.common.config_base }}/master/admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
  15. changed_when: false
  16. - name: Copy console templates to temp directory
  17. copy:
  18. src: "{{ item }}"
  19. dest: "{{ mktemp.stdout }}/{{ item }}"
  20. with_items:
  21. - "{{ __console_template_file }}"
  22. - "{{ __console_config_file }}"
  23. # Check if an existing console-config config map exists. If so, use those
  24. # contents so we don't overwrite changes.
  25. - name: Read the existing console config map
  26. oc_configmap:
  27. namespace: openshift-console
  28. name: console-config
  29. state: list
  30. register: console_config_map
  31. - set_fact:
  32. existing_config_map_data: "{{ console_config_map.results.results[0].data | default({}) }}"
  33. - name: Copy the existing web console config to temp directory
  34. copy:
  35. content: "{{ existing_config_map_data['console-config.yaml'] }}"
  36. dest: "{{ mktemp.stdout }}/{{ __console_config_file }}"
  37. when: existing_config_map_data['console-config.yaml'] is defined
  38. - set_fact:
  39. # Must have a trailing slash
  40. console_picker_developer_console_public_url: "{{ openshift.master.public_console_url }}/"
  41. when: openshift_web_console_install | default(true) | bool
  42. # Generate a new config when a config map is not defined.
  43. - name: Set web console config properties from inventory variables
  44. yedit:
  45. src: "{{ mktemp.stdout }}/{{ __console_config_file }}"
  46. edits:
  47. - key: clusterInfo#consoleBaseAddress
  48. value: "https://{{ openshift_console_hostname }}"
  49. - key: clusterInfo#consoleBasePath
  50. value: "{{ openshift_console_base_path | default('') }}"
  51. - key: clusterInfo#masterPublicURL
  52. value: "{{ openshift.master.public_api_url }}"
  53. - key: clusterInfo#developerConsolePublicURL
  54. value: "{{ console_picker_developer_console_public_url | default('') }}"
  55. - key: auth#oauthEndpointCAFile
  56. value: "{{ openshift_console_auth_ca_file }}"
  57. - key: auth#logoutRedirect
  58. value: "{{ openshift.master.logout_url | default('') }}"
  59. - key: customization#branding
  60. value: "{{ openshift_console_branding }}"
  61. - key: customization#documentationBaseURL
  62. value: "{{ openshift_console_documentation_base_url }}"
  63. separator: '#'
  64. state: present
  65. when: existing_config_map_data['console-config.yaml'] is not defined
  66. - slurp:
  67. src: "{{ mktemp.stdout }}/{{ __console_config_file }}"
  68. register: updated_console_config
  69. - name: Apply the console template file
  70. shell: >
  71. {{ openshift_client_binary }} process -f "{{ mktemp.stdout }}/{{ __console_template_file }}"
  72. --param IMAGE="{{ openshift_console_image_name }}"
  73. --param NODE_SELECTOR={{ openshift_console_nodeselector | to_json | quote }}
  74. --param SERVER_CONFIG="{{ updated_console_config['content'] | b64decode }}"
  75. --param REPLICA_COUNT="{{ openshift_console_replica_count }}"
  76. --param CONSOLE_HOSTNAME="{{ openshift_console_hostname }}"
  77. --config={{ mktemp.stdout }}/admin.kubeconfig
  78. | {{ openshift_client_binary }} apply --config={{ mktemp.stdout }}/admin.kubeconfig -f -
  79. - name: Remove temp directory
  80. file:
  81. state: absent
  82. name: "{{ mktemp.stdout }}"
  83. changed_when: False
  84. - include_tasks: start.yml