install_metrics.yaml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. ---
  2. - include_tasks: pre_install.yaml
  3. - name: Get annotations from {{ openshift_metrics_old_project }}
  4. oc_obj:
  5. state: list
  6. kind: project
  7. name: "{{ openshift_metrics_old_project }}"
  8. namespace: "{{ openshift_metrics_old_project }}"
  9. register: openshift_metrics_infra
  10. - name: Set {{openshift_metrics_old_project }} annotations fact.
  11. set_fact:
  12. openshift_metrics_old_project_annotations: >
  13. { "openshift.io/sa.scc.mcs":"{{ openshift_metrics_infra.results.results[0].metadata.annotations['openshift.io/sa.scc.mcs'] }}",
  14. "openshift.io/sa.scc.supplemental-groups": "{{ openshift_metrics_infra.results.results[0].metadata.annotations['openshift.io/sa.scc.supplemental-groups'] }}",
  15. "openshift.io/sa.scc.uid-range": "{{ openshift_metrics_infra.results.results[0].metadata.annotations['openshift.io/sa.scc.uid-range'] }}"
  16. }
  17. when:
  18. - openshift_metrics_infra.results is defined
  19. - openshift_metrics_infra.results.results is defined
  20. - openshift_metrics_infra.results.results[0] is defined
  21. - openshift_metrics_infra.results.results[0].metadata is defined
  22. - openshift_metrics_infra.results.results[0].metadata.annotations is defined
  23. - openshift_metrics_infra.results.results[0].metadata.annotations['openshift.io/sa.scc.mcs'] is defined
  24. - openshift_metrics_infra.results.results[0].metadata.annotations['openshift.io/sa.scc.supplemental-groups'] is defined
  25. - openshift_metrics_infra.results.results[0].metadata.annotations['openshift.io/sa.scc.uid-range'] is defined
  26. - name: Generate template for project {{ openshift_metrics_project }} creation
  27. template:
  28. src: create_project.j2
  29. dest: "{{ mktemp.stdout }}/templates/hawkular-metrics-projects.yaml"
  30. vars:
  31. project_name: "{{ openshift_metrics_project }}"
  32. annotations: "{{ openshift_metrics_old_project_annotations | default(false) }}"
  33. - name: Create {{ openshift_metrics_project }} namespace
  34. oc_obj:
  35. state: present
  36. name: "{{ openshift_metrics_project }}"
  37. kind: Project
  38. files:
  39. - "{{ mktemp.stdout }}/templates/hawkular-metrics-projects.yaml"
  40. delete_after: true
  41. - name: Install Metrics
  42. include_tasks: "install_{{ include_file }}.yaml"
  43. with_items:
  44. - support
  45. - heapster
  46. - hawkular_schema_job
  47. - hawkular
  48. - cassandra
  49. loop_control:
  50. loop_var: include_file
  51. when: not openshift_metrics_heapster_standalone | bool
  52. - name: Install Heapster Standalone
  53. include_tasks: install_heapster.yaml
  54. when: openshift_metrics_heapster_standalone | bool
  55. - name: Install Hawkular OpenShift Agent (HOSA)
  56. include_tasks: install_hosa.yaml
  57. when: openshift_metrics_install_hawkular_agent | default(false) | bool
  58. - find:
  59. paths: "{{ mktemp.stdout }}/templates"
  60. patterns: "^(?!metrics-hawkular-openshift-agent).*.yaml"
  61. use_regex: true
  62. register: object_def_files
  63. changed_when: no
  64. - slurp:
  65. src: "{{item.path}}"
  66. register: object_defs
  67. with_items: "{{object_def_files.files}}"
  68. changed_when: no
  69. - name: Create objects
  70. include_tasks: oc_apply.yaml
  71. vars:
  72. kubeconfig: "{{ mktemp.stdout }}/admin.kubeconfig"
  73. namespace: "{{ openshift_metrics_project }}"
  74. file_name: "{{ item.source }}"
  75. file_content: "{{ item.content | b64decode | from_yaml }}"
  76. with_items: "{{ object_defs.results }}"
  77. - find:
  78. paths: "{{ mktemp.stdout }}/templates"
  79. patterns: "^metrics-hawkular-openshift-agent.*.yaml"
  80. use_regex: true
  81. register: hawkular_agent_object_def_files
  82. when: openshift_metrics_install_hawkular_agent | bool
  83. changed_when: no
  84. - slurp:
  85. src: "{{item.path}}"
  86. register: hawkular_agent_object_defs
  87. with_items: "{{ hawkular_agent_object_def_files.files }}"
  88. when: openshift_metrics_install_hawkular_agent | bool
  89. changed_when: no
  90. - name: Create Hawkular Agent objects
  91. include_tasks: oc_apply.yaml
  92. vars:
  93. kubeconfig: "{{ mktemp.stdout }}/admin.kubeconfig"
  94. namespace: "{{ openshift_metrics_hawkular_agent_namespace }}"
  95. file_name: "{{ item.source }}"
  96. file_content: "{{ item.content | b64decode | from_yaml }}"
  97. with_items: "{{ hawkular_agent_object_defs.results }}"
  98. when: openshift_metrics_install_hawkular_agent | bool
  99. # Update asset config in openshift-web-console namespace
  100. - name: Add metrics route information to web console asset config
  101. include_role:
  102. name: openshift_web_console
  103. tasks_from: update_console_config.yml
  104. vars:
  105. console_config_edits:
  106. - key: clusterInfo#metricsPublicURL
  107. value: "https://{{ openshift_metrics_hawkular_hostname}}/hawkular/metrics"
  108. when:
  109. - openshift_web_console_install | default(true) | bool
  110. - command: >
  111. {{openshift_client_binary}}
  112. --config={{mktemp.stdout}}/admin.kubeconfig
  113. get rc
  114. -l metrics-infra
  115. -o name
  116. -n {{openshift_metrics_project}}
  117. register: existing_metrics_rc
  118. changed_when: no
  119. - name: Scaling down cluster to recognize changes
  120. include_tasks: stop_metrics.yaml
  121. when: existing_metrics_rc.stdout_lines | length > 0
  122. - name: Scaling up cluster
  123. include_tasks: start_metrics.yaml
  124. tags: openshift_metrics_start_cluster
  125. when:
  126. - openshift_metrics_start_cluster | default(true) | bool