|
@@ -37,6 +37,24 @@
|
|
|
system:serviceaccount:openshift-infra:metrics-deployer
|
|
|
when: "'system:serviceaccount:openshift-infra:metrics-deployer' not in edit_rolebindings.stdout"
|
|
|
|
|
|
+- name: Test hawkular view permissions
|
|
|
+ command: >
|
|
|
+ {{ openshift.common.client_binary }}
|
|
|
+ --config={{ openshift_metrics_kubeconfig }}
|
|
|
+ --namespace openshift-infra
|
|
|
+ get rolebindings -o jsonpath='{.items[?(@.metadata.name == "view")].userNames}'
|
|
|
+ register: view_rolebindings
|
|
|
+ changed_when: false
|
|
|
+
|
|
|
+- name: Add view permissions to hawkular SA
|
|
|
+ command: >
|
|
|
+ {{ openshift.common.client_binary }} adm
|
|
|
+ --config={{ openshift_metrics_kubeconfig }}
|
|
|
+ --namespace openshift-infra
|
|
|
+ policy add-role-to-user view
|
|
|
+ system:serviceaccount:openshift-infra:hawkular
|
|
|
+ when: "'system:serviceaccount:openshift-infra:hawkular' not in view_rolebindings"
|
|
|
+
|
|
|
- name: Test cluster-reader permissions
|
|
|
command: >
|
|
|
{{ openshift.common.client_binary }}
|