install.yml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. ---
  2. - name: Ensure openshift-web-console project exists
  3. oc_project:
  4. name: openshift-web-console
  5. state: present
  6. node_selector:
  7. - ""
  8. register: create_console_project
  9. - name: Make temp directory for web console templates
  10. command: mktemp -d /tmp/console-ansible-XXXXXX
  11. register: mktemp
  12. changed_when: False
  13. - name: Copy admin client config
  14. command: >
  15. cp {{ openshift.common.config_base }}/master//admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
  16. changed_when: false
  17. - name: Copy web console templates to temp directory
  18. copy:
  19. src: "{{ item }}"
  20. dest: "{{ mktemp.stdout }}/{{ item }}"
  21. with_items:
  22. - "{{ __console_template_file }}"
  23. - "{{ __console_config_file }}"
  24. # Check if an existing webconsole-config config map exists. If so, use those
  25. # contents so we don't overwrite changes.
  26. - name: Read the existing web console config map
  27. oc_configmap:
  28. namespace: openshift-web-console
  29. name: webconsole-config
  30. state: list
  31. register: webconsole_config_map
  32. - set_fact:
  33. existing_config_map_data: "{{ webconsole_config_map.results.results[0].data | default({}) }}"
  34. - name: Copy the existing web console config to temp directory
  35. copy:
  36. content: "{{ existing_config_map_data['webconsole-config.yaml'] }}"
  37. dest: "{{ mktemp.stdout }}/{{ __console_config_file }}"
  38. when: existing_config_map_data['webconsole-config.yaml'] is defined
  39. # Generate a new config when a config map is not defined.
  40. - when: existing_config_map_data['webconsole-config.yaml'] is not defined
  41. block:
  42. # Migrate the previous master-config.yaml asset config if it exists into the new
  43. # web console config config map.
  44. - name: Read existing assetConfig in master-config.yaml
  45. slurp:
  46. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  47. register: master_config_output
  48. - set_fact:
  49. config_to_migrate: "{{ master_config_output.content | b64decode | from_yaml }}"
  50. - set_fact:
  51. cro_plugin_enabled: "{{ config_to_migrate.admissionConfig is defined and config_to_migrate.admissionConfig.pluginConfig is defined and config_to_migrate.admissionConfig.pluginConfig.ClusterResourceOverrides is defined }}"
  52. - set_fact:
  53. console_picker_admin_console_public_url: "https://{{ openshift_console_hostname | default('console.{{openshift_master_default_subdomain}}') }}/"
  54. when: openshift_console_install | default(true) | bool
  55. # Update properties in the config template based on inventory vars when the
  56. # asset config does not exist.
  57. - name: Set web console config properties from inventory variables
  58. yedit:
  59. src: "{{ mktemp.stdout }}/{{ __console_config_file }}"
  60. edits:
  61. - key: clusterInfo#consolePublicURL
  62. # Must have a trailing slash
  63. value: "{{ openshift.master.public_console_url }}/"
  64. - key: clusterInfo#masterPublicURL
  65. value: "{{ openshift.master.public_api_url }}"
  66. - key: clusterInfo#logoutPublicURL
  67. value: "{{ openshift.master.logout_url | default('') }}"
  68. - key: clusterInfo#adminConsolePublicURL
  69. value: "{{ console_picker_admin_console_public_url | default('') }}"
  70. - key: features#inactivityTimeoutMinutes
  71. value: "{{ openshift_web_console_inactivity_timeout_minutes | default(0) }}"
  72. - key: features#clusterResourceOverridesEnabled
  73. value: "{{ openshift_web_console_cluster_resource_overrides_enabled | default(cro_plugin_enabled) }}"
  74. - key: extensions#scriptURLs
  75. value: "{{ openshift_web_console_extension_script_urls | default([]) }}"
  76. - key: extensions#stylesheetURLs
  77. value: "{{ openshift_web_console_extension_stylesheet_urls | default([]) }}"
  78. - key: extensions#properties
  79. value: "{{ openshift_web_console_extension_properties | default({}) }}"
  80. separator: '#'
  81. state: present
  82. when: config_to_migrate.assetConfig is not defined
  83. - name: Migrate assetConfig from master-config.yaml
  84. yedit:
  85. src: "{{ mktemp.stdout }}/{{ __console_config_file }}"
  86. edits:
  87. - key: clusterInfo#consolePublicURL
  88. value: "{{ config_to_migrate.assetConfig.publicURL }}"
  89. - key: clusterInfo#masterPublicURL
  90. value: "{{ config_to_migrate.assetConfig.masterPublicURL }}"
  91. - key: clusterInfo#logoutPublicURL
  92. value: "{{ config_to_migrate.assetConfig.logoutURL | default('') }}"
  93. - key: clusterInfo#metricsPublicURL
  94. value: "{{ config_to_migrate.assetConfig.metricsPublicURL | default('') }}"
  95. - key: clusterInfo#loggingPublicURL
  96. value: "{{ config_to_migrate.assetConfig.loggingPublicURL | default('') }}"
  97. - key: servingInfo#maxRequestsInFlight
  98. value: "{{ config_to_migrate.assetConfig.servingInfo.maxRequestsInFlight | default(0) }}"
  99. - key: servingInfo#requestTimeoutSeconds
  100. value: "{{ config_to_migrate.assetConfig.servingInfo.requestTimeoutSeconds | default(0) }}"
  101. - key: features#clusterResourceOverridesEnabled
  102. value: "{{ openshift_web_console_cluster_resource_overrides_enabled | default(cro_plugin_enabled) }}"
  103. separator: '#'
  104. state: present
  105. when: config_to_migrate.assetConfig is defined
  106. - slurp:
  107. src: "{{ mktemp.stdout }}/{{ __console_config_file }}"
  108. register: updated_console_config
  109. # Avoids an issue where existing replica sets can be orphaned due to the label selector changing.
  110. - name: Apply the app label to pods and replica sets
  111. shell: >
  112. {{ openshift_client_binary }} label rs,pods -l webconsole=true app=openshift-web-console --overwrite=true -n openshift-web-console
  113. --config={{ mktemp.stdout }}/admin.kubeconfig
  114. when: not create_console_project.changed
  115. - name: Apply the web console template file
  116. shell: >
  117. {{ openshift_client_binary }} process -f "{{ mktemp.stdout }}/{{ __console_template_file }}"
  118. --param API_SERVER_CONFIG="{{ updated_console_config['content'] | b64decode }}"
  119. --param IMAGE="{{ openshift_web_console_image }}"
  120. --param NODE_SELECTOR={{ openshift_web_console_nodeselector | to_json | quote }}
  121. --param REPLICA_COUNT="{{ openshift_web_console_replica_count }}"
  122. --config={{ mktemp.stdout }}/admin.kubeconfig
  123. | {{ openshift_client_binary }} apply --config={{ mktemp.stdout }}/admin.kubeconfig -f -
  124. - name: Remove temp directory
  125. file:
  126. state: absent
  127. name: "{{ mktemp.stdout }}"
  128. changed_when: False
  129. # Wait to give the rollout time to start before verifying that the console is
  130. # running. Unfortunately, we can't check if the deployment revision changed
  131. # because it's possible applying the template did not result in any changes to
  132. # the pod template spec, which would skip a new revision.
  133. - name: Pause for the web console deployment to start
  134. pause:
  135. seconds: 30
  136. # Skip if the project didn't exist since there was no previous deployment.
  137. when: not create_console_project.changed
  138. - include_tasks: start.yml