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