install.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. ---
  2. - name: Test if metrics-deployer service account exists
  3. command: >
  4. {{ openshift.common.client_binary }}
  5. --config={{ openshift_hosted_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_hosted_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_hosted_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.client_binary }} adm
  30. --config={{ openshift_hosted_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 hawkular view permissions
  36. command: >
  37. {{ openshift.common.client_binary }}
  38. --config={{ openshift_hosted_metrics_kubeconfig }}
  39. --namespace openshift-infra
  40. get rolebindings -o jsonpath='{.items[?(@.metadata.name == "view")].userNames}'
  41. register: view_rolebindings
  42. changed_when: false
  43. - name: Add view permissions to hawkular SA
  44. command: >
  45. {{ openshift.common.client_binary }} adm
  46. --config={{ openshift_hosted_metrics_kubeconfig }}
  47. --namespace openshift-infra
  48. policy add-role-to-user view
  49. system:serviceaccount:openshift-infra:hawkular
  50. when: "'system:serviceaccount:openshift-infra:hawkular' not in view_rolebindings"
  51. - name: Test cluster-reader permissions
  52. command: >
  53. {{ openshift.common.client_binary }}
  54. --config={{ openshift_hosted_metrics_kubeconfig }}
  55. --namespace openshift-infra
  56. get clusterrolebindings -o jsonpath='{.items[?(@.metadata.name == "cluster-reader")].userNames}'
  57. register: cluster_reader_clusterrolebindings
  58. changed_when: false
  59. - name: Add cluster-reader permission to the openshift-infra project to heapster SA
  60. command: >
  61. {{ openshift.common.client_binary }} adm
  62. --config={{ openshift_hosted_metrics_kubeconfig }}
  63. --namespace openshift-infra
  64. policy add-cluster-role-to-user cluster-reader
  65. system:serviceaccount:openshift-infra:heapster
  66. when: "'system:serviceaccount:openshift-infra:heapster' not in cluster_reader_clusterrolebindings.stdout"
  67. - name: Create metrics-deployer secret
  68. command: >
  69. {{ openshift.common.client_binary }}
  70. --config={{ openshift_hosted_metrics_kubeconfig }}
  71. --namespace openshift-infra
  72. secrets new metrics-deployer nothing=/dev/null
  73. register: metrics_deployer_secret
  74. changed_when: metrics_deployer_secret.rc == 0
  75. failed_when: metrics_deployer_secret.rc == 1 and 'already exists' not in metrics_deployer_secret.stderr
  76. # TODO: extend this to allow user passed in certs or generating cert with
  77. # OpenShift CA
  78. - name: Build metrics deployer command
  79. set_fact:
  80. deployer_cmd: "{{ openshift.common.client_binary }} process -f \
  81. {{ hosted_base }}/metrics-deployer.yaml -v \
  82. HAWKULAR_METRICS_HOSTNAME={{ g_metrics_hostname }} \
  83. -v USE_PERSISTENT_STORAGE={{metrics_persistence | string | lower }} \
  84. -v DYNAMICALLY_PROVISION_STORAGE={{metrics_dynamic_vol | string | lower }} \
  85. -v METRIC_DURATION={{ openshift.hosted.metrics.duration }} \
  86. -v METRIC_RESOLUTION={{ openshift.hosted.metrics.resolution }}
  87. {{ image_prefix }} \
  88. {{ image_version }} \
  89. -v MODE={{ deployment_mode }} \
  90. | {{ openshift.common.client_binary }} --namespace openshift-infra \
  91. --config={{ openshift_hosted_metrics_kubeconfig }} \
  92. create -o name -f -"
  93. - name: Deploy Metrics
  94. shell: "{{ deployer_cmd }}"
  95. register: deploy_metrics
  96. failed_when: "'already exists' not in deploy_metrics.stderr and deploy_metrics.rc != 0"
  97. changed_when: deploy_metrics.rc == 0
  98. - set_fact:
  99. deployer_pod: "{{ deploy_metrics.stdout[1:2] }}"
  100. # TODO: re-enable this once the metrics deployer validation issue is fixed
  101. # when using dynamically provisioned volumes
  102. - name: "Wait for image pull and deployer pod"
  103. shell: >
  104. {{ openshift.common.client_binary }}
  105. --namespace openshift-infra
  106. --config={{ openshift_hosted_metrics_kubeconfig }}
  107. get {{ deploy_metrics.stdout }}
  108. register: deploy_result
  109. until: "{{ 'Completed' in deploy_result.stdout }}"
  110. failed_when: False
  111. retries: 60
  112. delay: 10
  113. - name: Configure master for metrics
  114. modify_yaml:
  115. dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
  116. yaml_key: assetConfig.metricsPublicURL
  117. yaml_value: "{{ openshift_hosted_metrics_deploy_url }}"
  118. notify: restart master