install.yml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. ---
  2. - name: Test if metrics-deployer service account exists
  3. command: >
  4. {{ openshift.common.client_binary }}
  5. --config={{ openshift_metrics_kubeconfig }}
  6. --namespace=openshift-infra
  7. get serviceaccount metrics-deployer -o json
  8. register: serviceaccount
  9. changed_when: false
  10. failed_when: false
  11. - name: Create metrics-deployer Service Account
  12. shell: >
  13. echo {{ metrics_deployer_sa | to_json | quote }} |
  14. {{ openshift.common.client_binary }}
  15. --config={{ openshift_metrics_kubeconfig }}
  16. --namespace openshift-infra
  17. create -f -
  18. when: serviceaccount.rc == 1
  19. - name: Test edit permissions
  20. command: >
  21. {{ openshift.common.client_binary }}
  22. --config={{ openshift_metrics_kubeconfig }}
  23. --namespace openshift-infra
  24. get rolebindings -o jsonpath='{.items[?(@.metadata.name == "edit")].userNames}'
  25. register: edit_rolebindings
  26. changed_when: false
  27. - name: Add edit permission to the openshift-infra project to metrics-deployer SA
  28. command: >
  29. {{ openshift.common.admin_binary }}
  30. --config={{ openshift_metrics_kubeconfig }}
  31. --namespace openshift-infra
  32. policy add-role-to-user edit
  33. system:serviceaccount:openshift-infra:metrics-deployer
  34. when: "'system:serviceaccount:openshift-infra:metrics-deployer' not in edit_rolebindings.stdout"
  35. - name: Test cluster-reader permissions
  36. command: >
  37. {{ openshift.common.client_binary }}
  38. --config={{ openshift_metrics_kubeconfig }}
  39. --namespace openshift-infra
  40. get clusterrolebindings -o jsonpath='{.items[?(@.metadata.name == "cluster-reader")].userNames}'
  41. register: cluster_reader_clusterrolebindings
  42. changed_when: false
  43. - name: Add cluster-reader permission to the openshift-infra project to heapster SA
  44. command: >
  45. {{ openshift.common.admin_binary }}
  46. --config={{ openshift_metrics_kubeconfig }}
  47. --namespace openshift-infra
  48. policy add-cluster-role-to-user cluster-reader
  49. system:serviceaccount:openshift-infra:heapster
  50. when: "'system:serviceaccount:openshift-infra:heapster' not in cluster_reader_clusterrolebindings.stdout"
  51. - name: Create metrics-deployer secret
  52. command: >
  53. {{ openshift.common.client_binary }}
  54. --config={{ openshift_metrics_kubeconfig }}
  55. --namespace openshift-infra
  56. secrets new metrics-deployer nothing=/dev/null
  57. register: metrics_deployer_secret
  58. changed_when: metrics_deployer_secret.rc == 0
  59. failed_when: "metrics_deployer_secret.rc == 1 and 'already exists' not in metrics_deployer_secret.stderr"
  60. # TODO: extend this to allow user passed in certs or generating cert with
  61. # OpenShift CA
  62. - name: Build metrics deployer command
  63. set_fact:
  64. deployer_cmd: "{{ openshift.common.client_binary }} process -f \
  65. {{ metrics_template_dir }}/metrics-deployer.yaml -v \
  66. HAWKULAR_METRICS_HOSTNAME={{ metrics_hostname }},USE_PERSISTENT_STORAGE={{metrics_persistence | string | lower }},METRIC_DURATION={{ openshift.hosted.metrics.duration }},METRIC_RESOLUTION={{ openshift.hosted.metrics.resolution }},IMAGE_PREFIX={{ openshift.hosted.metrics.deployer_prefix }},IMAGE_VERSION={{ openshift.hosted.metrics.deployer_version }},MODE={{ deployment_mode }} \
  67. | {{ openshift.common.client_binary }} --namespace openshift-infra \
  68. --config={{ openshift_metrics_kubeconfig }} \
  69. create -f -"
  70. - name: Deploy Metrics
  71. shell: "{{ deployer_cmd }}"
  72. register: deploy_metrics
  73. failed_when: "'already exists' not in deploy_metrics.stderr and deploy_metrics.rc != 0"
  74. changed_when: deploy_metrics.rc == 0
  75. - set_fact:
  76. deployer_pod: "{{ deploy_metrics.stdout[1:2] }}"
  77. # TODO: re-enable this once the metrics deployer validation issue is fixed
  78. # when using dynamically provisioned volumes
  79. - name: "Wait for image pull and deployer pod"
  80. shell: >
  81. {{ openshift.common.client_binary }}
  82. --namespace openshift-infra
  83. --config={{ openshift_metrics_kubeconfig }}
  84. get {{ deploy_metrics.stdout }}
  85. register: deploy_result
  86. until: "{{ 'Completed' in deploy_result.stdout }}"
  87. failed_when: "{{ 'Completed' not in deploy_result.stdout }}"
  88. retries: 60
  89. delay: 10
  90. - name: Configure master for metrics
  91. modify_yaml:
  92. dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
  93. yaml_key: assetConfig.metricsPublicURL
  94. yaml_value: "https://{{ metrics_hostname }}/hawkular/metrics"
  95. notify: restart master
  96. - name: Store metrics public_url
  97. openshift_facts:
  98. role: master
  99. local_facts:
  100. metrics_public_url: "https://{{ metrics_hostname }}/hawkular/metrics"
  101. when: deploy_result | changed