Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ spec:
- ALL
targets:
- istioGateway:
create: false
create: true
tlsSecretRef: {{ $.Values.extensions.oidcAppsController.tlsSecretName | required "missing value for .Values.extensions.oidcAppsController.tlsSecretName" }}
labels:
endpoint.shoot.gardener.cloud/advertise: "true"
endpoint.shoot.gardener.cloud/application: credativ--plutono
Expand All @@ -52,7 +53,8 @@ spec:
gardener.cloud/role: shoot
targetPort: 3000
- istioGateway:
create: false
create: true
tlsSecretRef: {{ $.Values.extensions.oidcAppsController.tlsSecretName | required "missing value for .Values.extensions.oidcAppsController.tlsSecretName" }}
labels:
endpoint.shoot.gardener.cloud/advertise: "true"
endpoint.shoot.gardener.cloud/application: prometheus--prometheus
Expand All @@ -69,7 +71,8 @@ spec:
gardener.cloud/role: shoot
targetPort: 9090
- istioGateway:
create: false
create: true
tlsSecretRef: {{ $.Values.extensions.oidcAppsController.tlsSecretName | required "missing value for .Values.extensions.oidcAppsController.tlsSecretName" }}
labels:
endpoint.shoot.gardener.cloud/advertise: "true"
endpoint.shoot.gardener.cloud/application: prometheus--alertmanager
Expand All @@ -82,7 +85,8 @@ spec:
gardener.cloud/role: shoot
targetPort: 9093
- istioGateway:
create: false
create: true
tlsSecretRef: {{ $.Values.extensions.oidcAppsController.tlsSecretName | required "missing value for .Values.extensions.oidcAppsController.tlsSecretName" }}
labelSelector:
matchLabels:
component: plutono
Expand All @@ -92,7 +96,8 @@ spec:
kubernetes.io/metadata.name: garden
targetPort: 3000
- istioGateway:
create: false
create: true
tlsSecretRef: {{ $.Values.extensions.oidcAppsController.tlsSecretName | required "missing value for .Values.extensions.oidcAppsController.tlsSecretName" }}
labelSelector:
matchLabels:
component: alertmanager
Expand Down
21 changes: 21 additions & 0 deletions global/cc-gardener/templates/public-domain-certificate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,24 @@ spec:
usages:
- digital signature
{{- end }}

{{- if .Values.extensions.oidcAppsController.enabled }}
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: shoot-dashboards-wildcard
namespace: istio-ingress
spec:
dnsNames:
{{- for $dnsName := .Values.extensions.oidcAppsController.dashboardDnsNames }}
- {{ $dnsName }}
{{- end }}
issuerRef:
group: certmanager.cloud.sap
kind: DigicertIssuer
name: digicert-issuer
secretName: {{ .Values.extensions.oidcAppsController.tlsSecretName required "missing value for .Values.extensions.oidcAppsController.tlsSecretName" }}
usages:
- digital signature
- key encipherment
{{- end }}
Loading