Browse Source

Add an SA policy to the ansible-service-broker

We are not adding a role to the service account after creation.
The ansible-service-broker will require cluster-admin permissions
because we do things like: creating service accounts, projects,
and pods.
Ryan Hallisey 7 years ago
parent
commit
09aadeef84
1 changed files with 8 additions and 0 deletions
  1. 8 0
      roles/ansible_service_broker/tasks/install.yml

+ 8 - 0
roles/ansible_service_broker/tasks/install.yml

@@ -42,6 +42,14 @@
     namespace: openshift-ansible-service-broker
     state: present
 
+- name: Set SA cluster-role
+  oc_adm_policy_user:
+    state: present
+    namespace: "openshift-ansible-service-broker"
+    resource_kind: cluster-role
+    resource_name: cluster-admin
+    user: "system:serviceaccount:openshift-ansible-service-broker:asb"
+
 - name: create ansible-service-broker service
   oc_service:
     name: asb