try again
This commit is contained in:
		| @@ -1,3 +1,46 @@ | |||||||
|  | apiVersion: v1 | ||||||
|  | kind: ServiceAccount | ||||||
|  | metadata: | ||||||
|  |   name: prometheus | ||||||
|  | --- | ||||||
|  | apiVersion: rbac.authorization.k8s.io/v1 | ||||||
|  | kind: ClusterRole | ||||||
|  | metadata: | ||||||
|  |   name: prometheus | ||||||
|  | rules: | ||||||
|  | - apiGroups: [""] | ||||||
|  |   resources: | ||||||
|  |   - nodes | ||||||
|  |   - nodes/metrics | ||||||
|  |   - services | ||||||
|  |   - endpoints | ||||||
|  |   - pods | ||||||
|  |   verbs: ["get", "list", "watch"] | ||||||
|  | - apiGroups: [""] | ||||||
|  |   resources: | ||||||
|  |   - configmaps | ||||||
|  |   verbs: ["get"] | ||||||
|  | - apiGroups: | ||||||
|  |   - networking.k8s.io | ||||||
|  |   resources: | ||||||
|  |   - ingresses | ||||||
|  |   verbs: ["get", "list", "watch"] | ||||||
|  | - nonResourceURLs: ["/metrics"] | ||||||
|  |   verbs: ["get"] | ||||||
|  | --- | ||||||
|  | apiVersion: rbac.authorization.k8s.io/v1 | ||||||
|  | kind: ClusterRoleBinding | ||||||
|  | metadata: | ||||||
|  |   name: prometheus | ||||||
|  | roleRef: | ||||||
|  |   apiGroup: rbac.authorization.k8s.io | ||||||
|  |   kind: ClusterRole | ||||||
|  |   name: prometheus | ||||||
|  | subjects: | ||||||
|  | - kind: ServiceAccount | ||||||
|  |   name: prometheus | ||||||
|  |   namespace: monitoring # needs to be the same as in the kustomization.yaml | ||||||
|  | --- | ||||||
| apiVersion: monitoring.coreos.com/v1 | apiVersion: monitoring.coreos.com/v1 | ||||||
| kind: Prometheus | kind: Prometheus | ||||||
| metadata: | metadata: | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user