renamed controller to operator
This commit is contained in:
parent
b23161a08d
commit
3a61942646
11 changed files with 45 additions and 45 deletions
45
testapp/certman-istio-operator/rbac.yaml
Normal file
45
testapp/certman-istio-operator/rbac.yaml
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
apiVersion: v1
|
||||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: certman-istio-operator
|
||||
namespace: cert-manager
|
||||
---
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: ClusterRole
|
||||
metadata:
|
||||
name: certman-istio-operator
|
||||
rules:
|
||||
- apiGroups:
|
||||
- extensions
|
||||
resources:
|
||||
- ingresses
|
||||
verbs: ["get", "list", "watch"]
|
||||
- apiGroups:
|
||||
- networking.istio.io
|
||||
resources:
|
||||
- gateways
|
||||
- virtualservices
|
||||
verbs: ["*"]
|
||||
- apiGroups:
|
||||
- networking.istio.io
|
||||
resources:
|
||||
- destinationrules
|
||||
verbs: ["get", "create", "delete"]
|
||||
- apiGroups:
|
||||
- cio.giftfish.de
|
||||
resources:
|
||||
- refmaps
|
||||
verbs: ["get", "list", "create", "delete"]
|
||||
---
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: ClusterRoleBinding
|
||||
metadata:
|
||||
name: certman-istio-operator
|
||||
roleRef:
|
||||
apiGroup: rbac.authorization.k8s.io
|
||||
kind: ClusterRole
|
||||
name: certman-istio-operator
|
||||
subjects:
|
||||
- kind: ServiceAccount
|
||||
name: certman-istio-operator
|
||||
namespace: cert-manager
|
||||
Loading…
Add table
Add a link
Reference in a new issue