UNCLASSIFIED

You need to sign in or sign up before continuing.
gateway.yaml 605 Bytes
Newer Older
michaelmcleroy's avatar
michaelmcleroy committed
1 2 3 4
{{- if .Values.gateway }}
{{- required "`gateway` value has been deprecated.  Please use the new format in the `gateways` value." "" }}
{{- end }}

5
{{- range $name, $values := .Values.gateways }}
michaelmcleroy's avatar
michaelmcleroy committed
6 7 8 9
---
apiVersion: networking.istio.io/v1beta1
kind: Gateway
metadata:
10
  name: {{ $name }}
michaelmcleroy's avatar
michaelmcleroy committed
11 12 13
  namespace: {{ $.Release.Namespace }}
spec:
  selector:
14
    {{- $values.selector | default (dict) | toYaml | nindent 4 }}
michaelmcleroy's avatar
michaelmcleroy committed
15
  servers:
16 17 18
  - hosts:
    - "*"
    port:
michaelmcleroy's avatar
michaelmcleroy committed
19 20
      name: http
      number: 8080
21
      protocol: HTTP
michaelmcleroy's avatar
michaelmcleroy committed
22 23
    tls:
      httpsRedirect: true
24
    {{- tpl (toYaml $values.servers) $ | nindent 2 }}
michaelmcleroy's avatar
michaelmcleroy committed
25
{{- end }}