Skip to content

Commit

Permalink
removed hostname and using global exampleBankHostname instead
Browse files Browse the repository at this point in the history
  • Loading branch information
PSNAppz committed Sep 30, 2024
1 parent 8519c81 commit 51ac3b6
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
number: 8080
protocol: HTTP2
hosts:
- {{ default .Values.hostname .Values.istio.gateway.host | quote }}
- {{ default .Values.global.exampleBankHostname .Values.istio.gateway.host | quote }}
{{- if .Values.istio.gateway.httpTlsRedirect }}
tls:
httpsRedirect: true
Expand All @@ -30,7 +30,7 @@ spec:
number: 8443
protocol: HTTPS
hosts:
- {{ default .Values.hostname .Values.istio.gateway.host | quote }}
- {{ default .Values.global.exampleBankHostname .Values.istio.gateway.host | quote }}
tls:
{{ toYaml (omit .Values.istio.gateway.tls "enabled") | nindent 6 }}
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ metadata:
{{- end }}
spec:
hosts:
- {{ default .Values.hostname .Values.istio.virtualservice.host | quote }}
- {{ default .Values.global.exampleBankHostname .Values.istio.virtualservice.host | quote }}
gateways:
- {{ default (include "common.names.fullname" .) .Values.istio.virtualservice.gateway }}
http:
- headers:
request:
set:
x-forwarded-host: {{ default .Values.hostname .Values.istio.virtualservice.host | quote }}
x-forwarded-host: {{ default .Values.global.exampleBankHostname .Values.istio.virtualservice.host | quote }}
x-forwarded-proto: https
match:
- uri:
Expand Down
1 change: 0 additions & 1 deletion charts/openg2p-g2p-bridge-example-bank-api/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
global:
exampleBankHostname: example-bank.sandbox.openg2p.net

hostname: ''
nameOverride: openg2p-g2p-bridge-example-bank-api
fullnameOverride: openg2p-g2p-bridge-example-bank-api

Expand Down
1 change: 0 additions & 1 deletion charts/openg2p-g2p-bridge-example-bank-celery/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
global:
exampleBankHostname: example-bank.sandbox.openg2p.net

hostname: ''
nameOverride: openg2p-g2p-bridge-example-bank-celery
fullnameOverride: openg2p-g2p-bridge-example-bank-celery

Expand Down
16 changes: 16 additions & 0 deletions charts/openg2p-g2p-bridge-example-bank/questions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
questions:
- variable: global.exampleBankHostname
description: Hostname under which all Example Bank services will be accessed
type: string
label: Example Bank Hostname

- variable: openg2p-g2p-bridge-example-bank-api.enabled
description: Install G2P Bridge Example Bank API
type: boolean
label: G2P Bridge API

- variable: openg2p-g2p-bridge-example-bank-celery.enabled
description: Install G2P Bridge Example Bank Celery
type: boolean
label: G2P Bridge Celery

3 changes: 1 addition & 2 deletions charts/openg2p-g2p-bridge-example-bank/values.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
global:
exampleBankHostname: example-bank.sandbox.openg2p.net
exampleBankHostname: example-bank.dev.openg2p.org

openg2p-g2p-bridge-example-bank-api:
hostname: example-bank.sandbox.openg2p.net
enabled: true
common:
enabled: false
Expand Down

0 comments on commit 51ac3b6

Please sign in to comment.