update_asset_config.yml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 `asset_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.
  7. #
  8. # Note that this triggers a redeployment on the console and a brief downtime
  9. # since it uses a `Recreate` strategy.
  10. #
  11. # Example usage:
  12. #
  13. # - include_role:
  14. # name: openshift_web_console
  15. # tasks_from: update_asset_config.yml
  16. # vars:
  17. # asset_config_edits:
  18. # - key: loggingPublicURL
  19. # value: "https://{{ openshift_logging_kibana_hostname }}"
  20. # when: openshift_web_console_install | default(true) | bool
  21. - name: Read web console config map
  22. oc_configmap:
  23. namespace: openshift-web-console
  24. name: webconsole-config
  25. state: list
  26. register: webconsole_config
  27. - name: Make temp directory
  28. command: mktemp -d /tmp/console-ansible-XXXXXX
  29. register: mktemp
  30. changed_when: False
  31. - name: Copy asset config to temp file
  32. copy:
  33. content: "{{webconsole_config.results.results[0].data['webconsole-config.yaml']}}"
  34. dest: "{{ mktemp.stdout }}/webconsole-config.yaml"
  35. - name: Change asset config properties
  36. yedit:
  37. src: "{{ mktemp.stdout }}/webconsole-config.yaml"
  38. edits: "{{asset_config_edits}}"
  39. - name: Update web console config map
  40. oc_configmap:
  41. namespace: openshift-web-console
  42. name: webconsole-config
  43. state: present
  44. from_file:
  45. webconsole-config.yaml: "{{ mktemp.stdout }}/webconsole-config.yaml"
  46. - name: Remove temp directory
  47. file:
  48. state: absent
  49. name: "{{ mktemp.stdout }}"
  50. changed_when: False
  51. # There's currently no command to trigger a rollout for a k8s deployment
  52. # without changing the pod spec. Add an annotation to force a rollout after
  53. # the config map has been edited.
  54. - name: Rollout updated web console deployment
  55. oc_edit:
  56. kind: deployments
  57. name: webconsole
  58. namespace: openshift-web-console
  59. separator: '#'
  60. content:
  61. spec#template#metadata#annotations#installer-triggered-rollout: "{{ ansible_date_time.iso8601_micro }}"