From 7604f472de8c50bbc79ff18b2b55eae8908b0529 Mon Sep 17 00:00:00 2001 From: Sai <35331447+LittleLollipop@users.noreply.github.com> Date: Thu, 19 Dec 2024 11:29:33 +0800 Subject: [PATCH] market: fix app info inconsistency (#765) fix app info inconsistency --- .../user/helm-charts/market/templates/market_deploy.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/market/config/user/helm-charts/market/templates/market_deploy.yaml b/apps/market/config/user/helm-charts/market/templates/market_deploy.yaml index f1d4bf27..1ac831a6 100644 --- a/apps/market/config/user/helm-charts/market/templates/market_deploy.yaml +++ b/apps/market/config/user/helm-charts/market/templates/market_deploy.yaml @@ -3,7 +3,7 @@ {{- $redis_password := "" -}} {{ if $market_secret -}} -{{ $redis_password = (index $market_secret "data" "redis_password") }} +{{ $redis_password = (index $market_secret "data" "redis-passwords") }} {{ else -}} {{ $redis_password = randAlphaNum 16 | b64enc }} {{- end -}} @@ -85,12 +85,12 @@ spec: fieldPath: status.podIP containers: - name: appstore - image: beclab/market-frontend:v0.3.0 + image: beclab/market-frontend:v0.3.2 imagePullPolicy: IfNotPresent ports: - containerPort: 80 - name: appstore-backend - image: beclab/market-backend:v0.3.0 + image: beclab/market-backend:v0.3.2 imagePullPolicy: IfNotPresent ports: - containerPort: 81