We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 586f750 commit 3460391Copy full SHA for 3460391
Chart.yaml
@@ -1,6 +1,6 @@
1
apiVersion: v2
2
name: netbox
3
-version: 3.0.0
+version: 3.0.1
4
appVersion: v2.10.4
5
description: IP address management (IPAM) and data center infrastructure management (DCIM) tool
6
home: https://github.com/bootc/netbox-chart
templates/ingress.yaml
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "netbox.fullname" . -}}
-apiVersion: networking.k8s.io/v1beta1
+apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ $fullName }}
@@ -30,8 +30,10 @@ spec:
30
{{- if kindIs "string" . }}
31
- path: {{ . }}
32
backend:
33
- serviceName: {{ $fullName }}
34
- servicePort: http
+ service:
+ name: {{ $fullName }}
35
+ port:
36
+ name: http
37
{{- else }}
38
- {{ . | toYaml | indent 12 | trim }}
39
{{- end }}
0 commit comments