mirror of
https://github.com/bitnami/charts.git
synced 2026-03-15 06:47:24 +08:00
* Added antiflake pipeline Signed-off-by: alukic <alukic@vmware.com> * Diversified the pipeline Signed-off-by: alukic <alukic@vmware.com> * Make a change to trigger TKG Signed-off-by: alukic <alukic@vmware.com> * Replaced FIPS with normal AKS Signed-off-by: alukic <alukic@vmware.com> * Added extra workflow for Grafana Loki Signed-off-by: alukic <alukic@vmware.com> * Changed the pipeline Signed-off-by: alukic <alukic@vmware.com> * Modified the workflow Signed-off-by: alukic <alukic@vmware.com> * Removed Grafana Loki Signed-off-by: alukic <alukic@vmware.com> * Modify naming of cluster wide resources Signed-off-by: alukic <alukic@vmware.com> * Added Goss action Signed-off-by: alukic <alukic@vmware.com> * Change the name of the workload Signed-off-by: alukic <alukic@vmware.com> * Added two Goss tests Signed-off-by: alukic <alukic@vmware.com> * Remove root check Signed-off-by: alukic <alukic@vmware.com> * Fixed one remaining Goss test Signed-off-by: alukic <alukic@vmware.com> * Remove antiflake pipeline Signed-off-by: alukic <alukic@vmware.com> * Added 2 more Goss tests Signed-off-by: alukic <alukic@vmware.com> * Updated the template as per PR suggestions Signed-off-by: alukic <alukic@vmware.com> * Update version Signed-off-by: alukic <alukic@vmware.com> * CR changes PRP Signed-off-by: alukic <alukic@vmware.com> * Empty commit * Apply CR changes Signed-off-by: alukic <alukic@vmware.com> * Change the name Signed-off-by: alukic <alukic@vmware.com> * Apply PR suggestions Signed-off-by: alukic <alukic@vmware.com> * Arranged actions accordingly Signed-off-by: alukic <alukic@vmware.com> * Change a mistake in templating Signed-off-by: alukic <alukic@vmware.com>
128 lines
2.7 KiB
YAML
128 lines
2.7 KiB
YAML
{{- if and .Values.rbac.create .Values.rbac.clusterRole }}
|
|
apiVersion: rbac.authorization.k8s.io/{{ .Values.rbac.apiVersion }}
|
|
kind: ClusterRole
|
|
metadata:
|
|
name: {{ template "common.names.fullname.namespace" . }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels: {{ include "external-dns.labels" . | nindent 4 }}
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
rules:
|
|
- apiGroups:
|
|
- ""
|
|
resources:
|
|
- services
|
|
- pods
|
|
- nodes
|
|
- endpoints
|
|
verbs:
|
|
- get
|
|
- list
|
|
- watch
|
|
- apiGroups:
|
|
- extensions
|
|
- "networking.k8s.io"
|
|
- getambassador.io
|
|
resources:
|
|
- ingresses
|
|
- hosts
|
|
verbs:
|
|
- get
|
|
- list
|
|
- watch
|
|
- apiGroups:
|
|
- route.openshift.io
|
|
resources:
|
|
- routes
|
|
verbs:
|
|
- get
|
|
- list
|
|
- watch
|
|
- apiGroups:
|
|
- networking.istio.io
|
|
resources:
|
|
- gateways
|
|
- virtualservices
|
|
verbs:
|
|
- get
|
|
- list
|
|
- watch
|
|
- apiGroups:
|
|
- zalando.org
|
|
resources:
|
|
- routegroups
|
|
verbs:
|
|
- get
|
|
- list
|
|
- watch
|
|
- apiGroups:
|
|
- zalando.org
|
|
resources:
|
|
- routegroups/status
|
|
verbs:
|
|
- patch
|
|
- update
|
|
- apiGroups:
|
|
- projectcontour.io
|
|
resources:
|
|
- httpproxies
|
|
verbs:
|
|
- get
|
|
- watch
|
|
- list
|
|
- apiGroups:
|
|
- gloo.solo.io
|
|
- gateway.solo.io
|
|
resources:
|
|
- proxies
|
|
- virtualservices
|
|
verbs:
|
|
- get
|
|
- list
|
|
- watch
|
|
- apiGroups:
|
|
- configuration.konghq.com
|
|
resources:
|
|
- tcpingresses
|
|
verbs:
|
|
- get
|
|
- list
|
|
- watch
|
|
{{- if or .Values.crd.create .Values.crd.apiversion }}
|
|
- apiGroups:
|
|
{{- if .Values.crd.create }}
|
|
- externaldns.k8s.io
|
|
{{- else }}
|
|
- {{ $api := splitn "/" 2 .Values.crd.apiversion }}{{ $api._0 }}
|
|
{{- end }}
|
|
resources:
|
|
{{- if .Values.crd.create }}
|
|
- dnsendpoints
|
|
{{- else }}
|
|
- {{ printf "%ss" (.Values.crd.kind | lower) }}
|
|
{{- end }}
|
|
verbs:
|
|
- get
|
|
- list
|
|
- watch
|
|
- apiGroups:
|
|
{{- if .Values.crd.create }}
|
|
- externaldns.k8s.io
|
|
{{- else }}
|
|
- {{ $api := splitn "/" 2 .Values.crd.apiversion }}{{ $api._0 }}
|
|
{{- end }}
|
|
resources:
|
|
{{- if .Values.crd.create }}
|
|
- dnsendpoints/status
|
|
{{- else }}
|
|
- {{ printf "%ss/status" (.Values.crd.kind | lower) }}
|
|
{{- end }}
|
|
verbs:
|
|
- update
|
|
{{- end }}
|
|
{{- end }}
|