From fc08ae7779d573e39290a6f37167f576f2ec04b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20Guid=C3=A9e?= Date: Tue, 9 Jan 2024 14:39:28 -0500 Subject: [PATCH] Fix env ports --- vertex-admin/templates/configmap.yaml | 4 ++-- vertex-auth/templates/configmap.yaml | 2 +- vertex-client/templates/configmap.yaml | 16 ++++++++-------- vertex-containers/templates/configmap.yaml | 6 +++--- vertex-logs/templates/configmap.yaml | 2 +- vertex-monitoring/templates/configmap.yaml | 6 +++--- vertex-reverseproxy/templates/configmap.yaml | 4 ++-- vertex-sql/templates/configmap.yaml | 6 +++--- vertex-tunnels/templates/configmap.yaml | 6 +++--- 9 files changed, 26 insertions(+), 26 deletions(-) diff --git a/vertex-admin/templates/configmap.yaml b/vertex-admin/templates/configmap.yaml index 2b155f9..91f2e33 100644 --- a/vertex-admin/templates/configmap.yaml +++ b/vertex-admin/templates/configmap.yaml @@ -1,8 +1,8 @@ {{- include "common.configmap" (list . "vertex-admin.configmap") -}} {{- define "vertex-admin.configmap" -}} data: - VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:8080/api - VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:8080/api + VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:7002/api + VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:7016/api VERTEX_DB_HOST: {{ .Release.Name }}-{{ .Chart.Name }}-postgresql VERTEX_DB_PORT: {{ .Values.postgresql.port | quote }} {{- end -}} diff --git a/vertex-auth/templates/configmap.yaml b/vertex-auth/templates/configmap.yaml index 1f9a6f2..8dd9afc 100644 --- a/vertex-auth/templates/configmap.yaml +++ b/vertex-auth/templates/configmap.yaml @@ -1,7 +1,7 @@ {{- include "common.configmap" (list . "vertex-auth.configmap") -}} {{- define "vertex-auth.configmap" -}} data: - VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:8080/api + VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:7016/api VERTEX_DB_HOST: {{ .Release.Name }}-{{ .Chart.Name }}-postgresql VERTEX_DB_PORT: {{ .Values.postgresql.port | quote }} {{- end -}} diff --git a/vertex-client/templates/configmap.yaml b/vertex-client/templates/configmap.yaml index 718d259..b970635 100644 --- a/vertex-client/templates/configmap.yaml +++ b/vertex-client/templates/configmap.yaml @@ -1,13 +1,13 @@ {{- include "common.configmap" (list . "vertex-client.configmap") -}} {{- define "vertex-client.configmap" -}} data: - VERTEX_ADMIN_ADDR: http://vertex-admin-vertex-admin-service:8080/api - VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:8080/api - VERTEX_CONTAINERS_ADDR: http://vertex-containers-vertex-containers-service:8080/api - VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:8080/api - VERTEX_MONITORING_ADDR: http://vertex-monitoring-vertex-monitoring-service:8080/api - VERTEX_REVERSE_PROXY_ADDR: http://vertex-reverseproxy-vertex-reverseproxy-service:8080/api + VERTEX_ADMIN_ADDR: http://vertex-admin-vertex-admin-service:7000/api + VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:7002/api + VERTEX_CONTAINERS_ADDR: http://vertex-containers-vertex-containers-service:7004/api + VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:7016/api + VERTEX_MONITORING_ADDR: http://vertex-monitoring-vertex-monitoring-service:7006/api + VERTEX_REVERSE_PROXY_ADDR: http://vertex-reverseproxy-vertex-reverseproxy-service:7008/api VERTEX_SERVICE_EDITOR_ADDR: http://vertex-serviceeditor-vertex-serviceeditor-service:8080/api - VERTEX_SQL_ADDR: http://vertex-sql-vertex-sql-service:8080/api - VERTEX_TUNNELS_ADDR: http://vertex-tunnels-vertex-tunnels-service:8080/api + VERTEX_SQL_ADDR: http://vertex-sql-vertex-sql-service:7012/api + VERTEX_TUNNELS_ADDR: http://vertex-tunnels-vertex-tunnels-service:7014/api {{- end -}} diff --git a/vertex-containers/templates/configmap.yaml b/vertex-containers/templates/configmap.yaml index 9d9bc86..0dfd306 100644 --- a/vertex-containers/templates/configmap.yaml +++ b/vertex-containers/templates/configmap.yaml @@ -1,9 +1,9 @@ {{- include "common.configmap" (list . "vertex-containers.configmap") -}} {{- define "vertex-containers.configmap" -}} data: - VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:8080/api - VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:8080/api - VERTEX_CONTAINERS_KERNEL_ADDR: http://vertex-containers-vertex-containers-kernel-service:8080/api + VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:7016/api + VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:7002/api + VERTEX_CONTAINERS_KERNEL_ADDR: http://vertex-containers-vertex-containers-kernel-service:7005/api VERTEX_DB_HOST: {{ .Release.Name }}-{{ .Chart.Name }}-postgresql VERTEX_DB_PORT: {{ .Values.postgresql.port | quote }} {{- end -}} diff --git a/vertex-logs/templates/configmap.yaml b/vertex-logs/templates/configmap.yaml index a95b691..ecbda3b 100644 --- a/vertex-logs/templates/configmap.yaml +++ b/vertex-logs/templates/configmap.yaml @@ -1,5 +1,5 @@ {{- include "common.configmap" (list . "vertex-logs.configmap") -}} {{- define "vertex-logs.configmap" -}} data: - VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:8080/api + VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:7002/api {{- end -}} diff --git a/vertex-monitoring/templates/configmap.yaml b/vertex-monitoring/templates/configmap.yaml index 78a78d8..252487f 100644 --- a/vertex-monitoring/templates/configmap.yaml +++ b/vertex-monitoring/templates/configmap.yaml @@ -1,7 +1,7 @@ {{- include "common.configmap" (list . "vertex-monitoring.configmap") -}} {{- define "vertex-monitoring.configmap" -}} data: - VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:8080/api - VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:8080/api - VERTEX_CONTAINERS_ADDR: http://vertex-containers-vertex-containers-service:8080/api + VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:7002/api + VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:7016/api + VERTEX_CONTAINERS_ADDR: http://vertex-containers-vertex-containers-service:7004/api {{- end -}} diff --git a/vertex-reverseproxy/templates/configmap.yaml b/vertex-reverseproxy/templates/configmap.yaml index a220d6c..dc6bfe7 100644 --- a/vertex-reverseproxy/templates/configmap.yaml +++ b/vertex-reverseproxy/templates/configmap.yaml @@ -1,6 +1,6 @@ {{- include "common.configmap" (list . "vertex-reverseproxy.configmap") -}} {{- define "vertex-reverseproxy.configmap" -}} data: - VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:8080/api - VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:8080/api + VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:7002/api + VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:7016/api {{- end -}} diff --git a/vertex-sql/templates/configmap.yaml b/vertex-sql/templates/configmap.yaml index aae2a90..7661061 100644 --- a/vertex-sql/templates/configmap.yaml +++ b/vertex-sql/templates/configmap.yaml @@ -1,7 +1,7 @@ {{- include "common.configmap" (list . "vertex-sql.configmap") -}} {{- define "vertex-sql.configmap" -}} data: - VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:8080/api - VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:8080/api - VERTEX_CONTAINERS_ADDR: http://vertex-containers-vertex-containers-service:8080/api + VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:7002/api + VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:7016/api + VERTEX_CONTAINERS_ADDR: http://vertex-containers-vertex-containers-service:7004/api {{- end -}} diff --git a/vertex-tunnels/templates/configmap.yaml b/vertex-tunnels/templates/configmap.yaml index afea24e..6d90c12 100644 --- a/vertex-tunnels/templates/configmap.yaml +++ b/vertex-tunnels/templates/configmap.yaml @@ -1,7 +1,7 @@ {{- include "common.configmap" (list . "vertex-tunnels.configmap") -}} {{- define "vertex-tunnels.configmap" -}} data: - VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:8080/api - VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:8080/api - VERTEX_CONTAINERS_ADDR: http://vertex-containers-vertex-containers-service:8080/api + VERTEX_AUTH_ADDR: http://vertex-auth-vertex-auth-service:7002/api + VERTEX_LOGS_ADDR: http://vertex-logs-vertex-logs-service:7016/api + VERTEX_CONTAINERS_ADDR: http://vertex-containers-vertex-containers-service:7004/api {{- end -}}