Skip to content

Commit

Permalink
build(helm): fix ports on default service URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
brucetony committed Apr 11, 2024
1 parent 4766903 commit 99c5dc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion k8s/helm/hub-adapter/templates/hub-adapter-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
- name: IDP_REALM
value: {{ .Values.env.IDP_REALM | default "flame" | quote }} # To be replaced
- name: RESULTS_SERVICE_URL
value: {{ .Values.env.RESULTS_SERVICE_URL | default "http://node-result-service:5000" | quote }} # To be properly filled in
value: {{ .Values.env.RESULTS_SERVICE_URL | default "http://node-result-service:8080" | quote }} # To be properly filled in
- name: PODORC_SERVICE_URL
value: {{ .Values.env.PODORC_SERVICE_URL | default "http://po-service:8000" | quote }} # To be properly filled in
- name: KONG_ADMIN_SERVICE_URL
Expand Down
2 changes: 1 addition & 1 deletion k8s/helm/hub-adapter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ env:
API_CLIENT_ID: api-client
IDP_REALM: flame
IDP_URL: http://keycloak-service:8080
RESULTS_SERVICE_URL: http://results-service:5000
RESULTS_SERVICE_URL: http://node-result-service:8080
KONG_ADMIN_SERVICE_URL: http://kong-service:8000
PODORC_SERVICE_URL: http://po-service:8000
HUB_SERVICE_URL: https://privateaim.net/core
Expand Down

0 comments on commit 99c5dc2

Please sign in to comment.