File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed
Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ ingress:
7272 hosts : # Filled by user_auth.tf
7373 - paths : ["/"]
7474 tls : # Filled by user_auth.tf
75- - secretName : oathkeeper-proxy-tls-secret
75+ -
7676
7777 api :
7878 # En-/Disable the api ingress.
Original file line number Diff line number Diff line change @@ -92,13 +92,17 @@ locals {
9292
9393 oathkeeper_values_override = {
9494 ingress = {
95+ # https://github.com/ory/k8s/blob/master/helm/charts/oathkeeper/templates/ingress-proxy.yaml
9596 proxy = {
96- hosts = [var.backend_service_domain]
97- tls = {
98- " 0" = {
99- host = [var.backend_service_domain]
100- }
101- }
97+ hosts = [{
98+ host = var.backend_service_domain
99+ paths = [" /" ]
100+ }]
101+
102+ tls = [{
103+ hosts = [var.backend_service_domain]
104+ secretName = " oathkeeper-proxy-tls-secret"
105+ }]
102106
103107 annotations = {
104108 " nginx.ingress.kubernetes.io/cors-allow-origin" : " https://${ var . frontend_service_domain } "
You can’t perform that action at this time.
0 commit comments