[CI] Add deploy service account and RBAC
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
kleph 2020-02-22 02:50:07 +01:00
parent 03a194ed78
commit 3260c6ea1a

View file

@ -0,0 +1,41 @@
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: beer-deploy
namespace: beer
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: beer-deploy-role
namespace: beer # Should be namespace you are granting access to
rules:
- apiGroups: ["*"]
resources: ["*"]
verbs: ["*"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: beer-rolebinding
namespace: beer
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: beer-deploy-role
subjects:
- namespace: beer
kind: ServiceAccount
name: beer-deploy
#---
#ApiVersion: v1
#Kind: Secret
#Metadata:
# name: beer-deploy-secret
# annotations:
# kubernetes.io/service-account.name: beer-deploy
#Type: kubernetes.io/service-account-token