[Share] Configuration Kubernetes (k8s) for this repository #4100
H0llyW00dzZ
started this conversation in
Ideas
Replies: 2 comments
-
Additional NoteNote
|
Beta Was this translation helpful? Give feedback.
0 replies
-
another configuration for binding cluster apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: ingress-nginx
rules:
- apiGroups: [""]
resources: ["configmaps", "endpoints", "pods", "services", "events", "secrets"] # Adding Secrets for CertManager
verbs: ["get", "list", "watch"]
- apiGroups: ["extensions", "networking.k8s.io"]
resources: ["ingresses", "ingressclasses", "ingresses/status"]
verbs: ["get", "list", "watch", "update"]
- apiGroups: ["discovery.k8s.io"]
resources: ["endpointslices"]
verbs: ["get", "list", "watch"] |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Note
This is just an example of a spec deployment for Kubernetes (k8s). You may also need to bind the cluster role. Below is the example
Beta Was this translation helpful? Give feedback.
All reactions