UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit f637a011 authored by Michael Martin's avatar Michael Martin Committed by Ryan Garcia
Browse files

istio-control-plane http to https redirects

parent 4f9d1b8e
No related branches found
No related tags found
2 merge requests!1386Master,!968istio-control-plane http to https redirects
...@@ -47,6 +47,8 @@ gateways: ...@@ -47,6 +47,8 @@ gateways:
{{ $name | nindent 2 }}: {{ $name | nindent 2 }}:
selector: selector:
app: {{ $values.ingressGateway }} app: {{ $values.ingressGateway }}
autoHttpRedirect:
enabled: {{ dig "autoHttpRedirect" "enabled" "true" $values }}
servers: servers:
- hosts: - hosts:
{{ tpl ($values.hosts | default (list) | toYaml) $ | nindent 8 }} {{ tpl ($values.hosts | default (list) | toYaml) $ | nindent 8 }}
......
...@@ -118,7 +118,7 @@ istio: ...@@ -118,7 +118,7 @@ istio:
git: git:
repo: https://repo1.dso.mil/platform-one/big-bang/apps/core/istio-controlplane.git repo: https://repo1.dso.mil/platform-one/big-bang/apps/core/istio-controlplane.git
path: "./chart" path: "./chart"
tag: "1.11.2-bb.0" tag: "1.11.2-bb.1"
# Ingress gateways are created based on the key name. Adding more keys will add ingress gateways. # Ingress gateways are created based on the key name. Adding more keys will add ingress gateways.
# Ingress gateways are setup in a Horizontal Pod Autoscaler with 1 to 5 replicas # Ingress gateways are setup in a Horizontal Pod Autoscaler with 1 to 5 replicas
...@@ -148,6 +148,9 @@ istio: ...@@ -148,6 +148,9 @@ istio:
ingressGateway: "public-ingressgateway" ingressGateway: "public-ingressgateway"
hosts: hosts:
- "*.{{ .Values.domain }}" - "*.{{ .Values.domain }}"
# -- Controls default HTTP/8080 server entry with HTTP to HTTPS Redirect.
autoHttpRedirect:
enabled: true
tls: tls:
key: "" key: ""
cert: "" cert: ""
...@@ -155,6 +158,9 @@ istio: ...@@ -155,6 +158,9 @@ istio:
# ingressGateway: "private-ingressgateway" # ingressGateway: "private-ingressgateway"
# hosts: # hosts:
# - "*.{{ .Values.domain }}" # - "*.{{ .Values.domain }}"
# # -- Controls default HTTP/8080 server entry with HTTP to HTTPS Redirect.
# autoHttpRedirect:
# enabled: true
# tls: # tls:
# key: "" # key: ""
# cert: "" # cert: ""
...@@ -162,6 +168,9 @@ istio: ...@@ -162,6 +168,9 @@ istio:
# ingressGateway: "passthrough-ingressgateway" # ingressGateway: "passthrough-ingressgateway"
# hosts: # hosts:
# - "*.{{ .Values.domain }}" # - "*.{{ .Values.domain }}"
# # -- Controls default HTTP/8080 server entry with HTTP to HTTPS Redirect.
# autoHttpRedirect:
# enabled: true
# tls: # tls:
# mode: "PASSTHROUGH" # mode: "PASSTHROUGH"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment