[bitnami/pinniped] Fix ingerss supervisor (#11850)

* [bitnami/pinniped] Fix ingerss supervisor

Signed-off-by: Rafael Rios Saavedra <rrios@vmware.com>

* Update Chart version

Signed-off-by: Rafael Rios Saavedra <rrios@vmware.com>

Signed-off-by: Rafael Rios Saavedra <rrios@vmware.com>
Signed-off-by: Rafael Ríos Saavedra <rrios@vmware.com>
This commit is contained in:
Rafael Ríos Saavedra
2022-09-14 10:03:05 +02:00
committed by GitHub
parent ecdc3ba7b8
commit ddba459294
2 changed files with 3 additions and 3 deletions

View File

@@ -22,4 +22,4 @@ name: pinniped
sources:
- https://github.com/bitnami/containers/tree/main/bitnami/pinniped
- https://github.com/vmware-tanzu/pinniped/
version: 0.3.0
version: 0.3.1

View File

@@ -31,7 +31,7 @@ spec:
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.supervisor.ingress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" .) "servicePort" "https" "context" $) | nindent 14 }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "pinniped.supervisor.fullname" .) "servicePort" "https" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.supervisor.ingress.extraHosts }}
- host: {{ .name | quote }}
@@ -41,7 +41,7 @@ spec:
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" $) "servicePort" "https" "context" $) | nindent 14 }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "pinniped.supervisor.fullname" $) "servicePort" "https" "context" $) | nindent 14 }}
{{- end }}
{{- if .Values.supervisor.ingress.extraRules }}
{{- include "common.tplvalues.render" (dict "value" .Values.supervisor.ingress.extraRules "context" $) | nindent 4 }}