[bitnami/harbor] Update ingress portal path to the last (#15956)

* change path / to the last

Signed-off-by: Cesar Okuti <cesar.okuti@gmail.com>

* Remove duplicated path and change Chart version

Signed-off-by: Cesar Okuti <cesar.okuti@gmail.com>

---------

Signed-off-by: Cesar Okuti <cesar.okuti@gmail.com>
This commit is contained in:
César Yuji Okuti
2023-04-06 14:58:46 +01:00
committed by GitHub
parent d4e985d67a
commit f1ab3dfaf5
2 changed files with 6 additions and 6 deletions

View File

@@ -36,4 +36,4 @@ sources:
- https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry
- https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl
- https://goharbor.io/
version: 16.4.9
version: 16.4.10

View File

@@ -61,11 +61,6 @@ spec:
{{- if .Values.ingress.core.extraPaths }}
{{- toYaml .Values.ingress.core.extraPaths | nindent 10 }}
{{- end }}
- path: {{ .portal_path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.core.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "harbor.portal" .) "servicePort" (ternary "https" "http" .Values.internalTLS.enabled) "context" $) | nindent 14 }}
- path: {{ .api_path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.core.pathType }}
@@ -91,6 +86,11 @@ spec:
pathType: {{ .Values.ingress.core.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "harbor.core" .) "servicePort" (ternary "https" "http" .Values.internalTLS.enabled) "context" $) | nindent 14 }}
- path: {{ .portal_path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.core.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "harbor.portal" .) "servicePort" (ternary "https" "http" .Values.internalTLS.enabled) "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.ingress.core.extraHosts }}
- host: {{ include "common.tplvalues.render" ( dict "value" .name "context" $ ) }}