Provision Azure Files ReadWriteMany Persistent Volumes on Azure OpenShift: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 18: Line 18:
For more details about role assignment see: {{Internal|Azure_Security_Operations#Assign_a_Role|Azure Security Operations | Assign a Role}}
For more details about role assignment see: {{Internal|Azure_Security_Operations#Assign_a_Role|Azure Security Operations | Assign a Role}}


3. The OpenShift persistent volume binder service account will need the ability to read secrets. This ability can be given by creating and assigning an OpenShift cluster role to achieve this. Login into the OpenShift API server as described here: [[OpenShift_on_Azure#oc_login|OpenShift on Azure | oc login]].
3. The OpenShift persistent volume binder service account will need the ability to read secrets. This ability can be given by creating and assigning an OpenShift cluster role to achieve this. Login into the OpenShift API server as described here: [[OpenShift_on_Azure#oc_login|OpenShift on Azure | oc login]]. Then create the role with:
<syntaxhighlight lang='bash'>
oc create clusterrole azure-secret-reader --verb=create,get --resource=secrets
</syntaxhighlight>

Revision as of 21:01, 25 November 2020

External

Internal

Procedure

1. Create a storage account with its dedicated resource group. Why? Why can't we use the OpenShift cluster resource group?. Use this:

Create Storage Account

2. Give the OpenShift service principal "listKey" permission on the new storage account resource group. Assign the "Contributor" role to achieve this.

The OpenShift service principal can be obtained as described here:

Obtain the OpenShift cluster service principal

Assign the role:

az role assignment create --role Contributor --assignee <openshift-cluster-service-principal> -g <openshift-cluster-resource-group>

For more details about role assignment see:

Azure Security Operations | Assign a Role

3. The OpenShift persistent volume binder service account will need the ability to read secrets. This ability can be given by creating and assigning an OpenShift cluster role to achieve this. Login into the OpenShift API server as described here: OpenShift on Azure | oc login. Then create the role with:

oc create clusterrole azure-secret-reader --verb=create,get --resource=secrets