fix(secrets): base64 encode MONGO_PORT in backend.yaml

chore(values): update image tags for backend and frontend in values.alpha.yaml

Signed-off-by: 孙振宇 <>
This commit is contained in:
孙振宇 2024-12-30 17:55:53 +08:00
parent 9470e50926
commit 447f700b05
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ type: Opaque
data: data:
MONGO_DB: {{ .Values.backend.config.mongo.db | b64enc | quote }} MONGO_DB: {{ .Values.backend.config.mongo.db | b64enc | quote }}
MONGO_HOST: {{ .Values.backend.config.mongo.host | b64enc | quote }} MONGO_HOST: {{ .Values.backend.config.mongo.host | b64enc | quote }}
MONGO_PORT: {{ .Values.backend.config.mongo.port }} MONGO_PORT: {{ .Values.backend.config.mongo.port | toString | b64enc | quote }}
EMAIL_USER: {{ .Values.backend.config.email.user | b64enc | quote }} EMAIL_USER: {{ .Values.backend.config.email.user | b64enc | quote }}
EMAIL_PASSWORD: {{ .Values.backend.config.email.password | b64enc | quote }} EMAIL_PASSWORD: {{ .Values.backend.config.email.password | b64enc | quote }}
SUPER_ADMIN: {{ .Values.backend.config.superAdmin | b64enc | quote }} SUPER_ADMIN: {{ .Values.backend.config.superAdmin | b64enc | quote }}

View File

@ -6,7 +6,7 @@ backend:
repository: docker.io/magicleaps repository: docker.io/magicleaps
name: magicleaps name: magicleaps
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
tag: "latest" tag: "backend-snapshot-5e9dea2-linux-amd64"
extraEnv: {} extraEnv: {}
port: 8081 port: 8081
ingress: ingress:
@ -50,7 +50,7 @@ frontend:
repository: docker.io/magicleaps repository: docker.io/magicleaps
name: magicleaps name: magicleaps
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
tag: "latest" tag: "frontend-snapshot-5e9dea2-linux-amd64"
extraEnv: {} extraEnv: {}
port: 80 port: 80
ingress: ingress: