diff --git a/bookstack/Chart.yaml b/bookstack/Chart.yaml index a02cbba..15fa800 100644 --- a/bookstack/Chart.yaml +++ b/bookstack/Chart.yaml @@ -8,4 +8,4 @@ icon: https://github.com/BookStackApp/website/blob/master/static/images/logo.png name: bookstack sources: - https://github.com/BookStackApp/BookStack -version: 1.2.4 +version: 1.2.5 diff --git a/bookstack/templates/ingress.yaml b/bookstack/templates/ingress.yaml index 066e450..a8fec0e 100644 --- a/bookstack/templates/ingress.yaml +++ b/bookstack/templates/ingress.yaml @@ -1,7 +1,7 @@ {{- if .Values.ingress.enabled -}} {{- $fullName := include "bookstack.fullname" . -}} {{- $ingressPath := .Values.ingress.path -}} -apiVersion: extensions/v1beta1 +apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: {{ $fullName }} @@ -31,8 +31,11 @@ spec: http: paths: - path: {{ $ingressPath }} + pathType: ImplementationSpecific backend: - serviceName: {{ $fullName }} - servicePort: http + service: + name: {{ $fullName }} + port: + name: http {{- end }} {{- end }}