From 0bf26af3262e882066a4bc2765894dedd48e4c32 Mon Sep 17 00:00:00 2001 From: Roman Pytkov Date: Mon, 27 Oct 2025 18:21:10 +0300 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B4=D0=B5=D0=BF=D0=BB=D0=BE?= =?UTF-8?q?=D0=B5=D0=BD=20=D1=84=D1=80=D0=BE=D0=BD=D1=82=D0=B5=D0=BD=D0=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- liquid-code/Chart.yaml | 2 +- liquid-code/templates/Deployments/frontend-deployment.yaml | 6 ++++-- liquid-code/templates/Services/frontend-service.yaml | 2 +- liquid-code/values.yaml | 4 ++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/liquid-code/Chart.yaml b/liquid-code/Chart.yaml index c8d16be..f7738c3 100644 --- a/liquid-code/Chart.yaml +++ b/liquid-code/Chart.yaml @@ -21,4 +21,4 @@ version: 1.0.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "1.0.0" +appVersion: "1.0.1" diff --git a/liquid-code/templates/Deployments/frontend-deployment.yaml b/liquid-code/templates/Deployments/frontend-deployment.yaml index 81aaef6..6ea82e2 100644 --- a/liquid-code/templates/Deployments/frontend-deployment.yaml +++ b/liquid-code/templates/Deployments/frontend-deployment.yaml @@ -14,11 +14,13 @@ spec: metadata: labels: app: {{ .Release.Name }}-frontend + annotations: + redeploy-timestamp: "{{ now | unixEpoch }}" spec: containers: - name: {{ .Release.Name }}-frontend - image: ghcr.io/nullptroma/liquid-frontend:latest + image: git.nullptr.top/liquidcode/liquidcode-frontend:latest imagePullPolicy: Always ports: - - containerPort: 8000 + - containerPort: 3000 {{ end }} \ No newline at end of file diff --git a/liquid-code/templates/Services/frontend-service.yaml b/liquid-code/templates/Services/frontend-service.yaml index 54522b2..88df253 100644 --- a/liquid-code/templates/Services/frontend-service.yaml +++ b/liquid-code/templates/Services/frontend-service.yaml @@ -9,6 +9,6 @@ spec: ports: - protocol: TCP port: 80 - targetPort: 8000 + targetPort: 3000 {{ end }} \ No newline at end of file diff --git a/liquid-code/values.yaml b/liquid-code/values.yaml index f461393..06801a2 100644 --- a/liquid-code/values.yaml +++ b/liquid-code/values.yaml @@ -9,8 +9,8 @@ jwt: database: secretName: liquid-db-app migrateDb: true - dropDb: false + dropDb: true frontend: - enable: false + enable: true queue: enable: false \ No newline at end of file