We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f63a248 commit 37e3000Copy full SHA for 37e3000
2 files changed
charts/gateway/templates/drycc-gateway.yaml
@@ -1,7 +1,11 @@
1
-apiVersion: gateway.networking.k8s.io/v1beta1
+apiVersion: gateway.networking.k8s.io/v1
2
kind: Gateway
3
metadata:
4
name: drycc-gateway
5
+ {{- if .Values.global.certManagerEnabled}}
6
+ annotations:
7
+ cert-manager.io/issuer: drycc-issuer
8
+ {{- end }}
9
spec:
10
gatewayClassName: {{ .Values.global.gatewayClass }}
11
listeners:
charts/gateway/templates/drycc-route.yaml
@@ -1,6 +1,6 @@
{{ range $index, $app := .Values.apps }}
---
-apiVersion: gateway.networking.k8s.io/{{ if (eq $app.protocol "HTTP") }}v1beta1{{ else }}v1alpha2{{ end }}
+apiVersion: gateway.networking.k8s.io/{{ if (eq $app.protocol "HTTP") }}v1{{ else }}v1alpha2{{ end }}
kind: {{ $app.protocol }}Route
name: {{ $app.name }}
0 commit comments