update_console_config.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ---
  2. # This task updates asset config values in the webconsole-config config map in
  3. # the openshift-web-console namespace. The values to set are pased in the
  4. # variable `console_config_edits`, which is an array of objects with `key` and
  5. # `value` properties in the same format as `yedit` module `edits`. Only
  6. # properties passed are updated. The separator for nested properties is `#`.
  7. #
  8. # Example usage:
  9. #
  10. # - include_role:
  11. # name: openshift_web_console
  12. # tasks_from: update_console_config.yml
  13. # vars:
  14. # console_config_edits:
  15. # - key: clusterInfo#loggingPublicURL
  16. # value: "https://{{ openshift_logging_kibana_hostname }}"
  17. # when: openshift_web_console_install | default(true) | bool
  18. - name: Read the existing web console config map
  19. oc_configmap:
  20. namespace: openshift-web-console
  21. name: webconsole-config
  22. state: list
  23. register: webconsole_config_map
  24. - set_fact:
  25. existing_config_map_data: "{{ webconsole_config_map.results.results[0].data | default({}) }}"
  26. - when: existing_config_map_data['webconsole-config.yaml'] is defined
  27. block:
  28. - name: Make temp directory
  29. command: mktemp -d /tmp/console-ansible-XXXXXX
  30. register: mktemp_console
  31. changed_when: False
  32. - name: Copy the existing web console config to temp directory
  33. copy:
  34. content: "{{ existing_config_map_data['webconsole-config.yaml'] }}"
  35. dest: "{{ mktemp_console.stdout }}/webconsole-config.yaml"
  36. - name: Change web console config properties
  37. yedit:
  38. src: "{{ mktemp_console.stdout }}/webconsole-config.yaml"
  39. edits: "{{console_config_edits}}"
  40. separator: '#'
  41. state: present
  42. - name: Update web console config map
  43. oc_configmap:
  44. namespace: openshift-web-console
  45. name: webconsole-config
  46. state: present
  47. from_file:
  48. webconsole-config.yaml: "{{ mktemp_console.stdout }}/webconsole-config.yaml"
  49. - name: Remove temp directory
  50. file:
  51. state: absent
  52. name: "{{ mktemp_console.stdout }}"
  53. changed_when: False