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:
parent
9470e50926
commit
447f700b05
@ -7,7 +7,7 @@ type: Opaque
|
||||
data:
|
||||
MONGO_DB: {{ .Values.backend.config.mongo.db | 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_PASSWORD: {{ .Values.backend.config.email.password | b64enc | quote }}
|
||||
SUPER_ADMIN: {{ .Values.backend.config.superAdmin | b64enc | quote }}
|
||||
|
||||
@ -6,7 +6,7 @@ backend:
|
||||
repository: docker.io/magicleaps
|
||||
name: magicleaps
|
||||
imagePullPolicy: IfNotPresent
|
||||
tag: "latest"
|
||||
tag: "backend-snapshot-5e9dea2-linux-amd64"
|
||||
extraEnv: {}
|
||||
port: 8081
|
||||
ingress:
|
||||
@ -50,7 +50,7 @@ frontend:
|
||||
repository: docker.io/magicleaps
|
||||
name: magicleaps
|
||||
imagePullPolicy: IfNotPresent
|
||||
tag: "latest"
|
||||
tag: "frontend-snapshot-5e9dea2-linux-amd64"
|
||||
extraEnv: {}
|
||||
port: 80
|
||||
ingress:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user