You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To create service accounts that allow you create sites, you must give those accounts permissions as described in the example below, which creates the skupper-sa service account for the west namespace:
apiVersion: v1
kind: ServiceAccount
metadata:
name: skupper-sa
namespace: west
---
kind: Role
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: skupper-sa-full-access
namespace: west
rules:
- apiGroups: ["", "apps", "extensions", "rbac.authorization.k8s.io",]
resources: ["*"]
verbs: ["*"]
---
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: skupper-sa-view
namespace: west
subjects:
- kind: ServiceAccount
name: skupper-sa
namespace: west
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: skupper-sa-full-access
Sugestion
The text was updated successfully, but these errors were encountered: