From b6ffdd18e121baa8afa3ad4b1ba1fde7cf61c8a5 Mon Sep 17 00:00:00 2001 From: woodpecker-bot Date: Mon, 29 Dec 2025 18:50:34 +0000 Subject: [PATCH] frontend: update tag to master-ef79895 --- manifests/invy/values.yaml | 40 +++++++++----------------------------- 1 file changed, 9 insertions(+), 31 deletions(-) diff --git a/manifests/invy/values.yaml b/manifests/invy/values.yaml index ce54c91..0884b44 100644 --- a/manifests/invy/values.yaml +++ b/manifests/invy/values.yaml @@ -1,7 +1,6 @@ global: namespace: my-apps imagePullSecrets: [] - # Backend configuration backend: name: backend @@ -10,12 +9,10 @@ backend: repository: harbor.dvirlabs.com/my-apps/invy-backend pullPolicy: IfNotPresent tag: "latest" - service: type: ClusterIP port: 8000 targetPort: 8000 - resources: requests: cpu: 100m @@ -23,10 +20,8 @@ backend: limits: cpu: 500m memory: 512Mi - env: PYTHONUNBUFFERED: "1" - ingress: enabled: true className: "traefik" @@ -43,7 +38,6 @@ backend: - secretName: api-invy-tls hosts: - api-invy.dvirlabs.com - # Frontend configuration frontend: name: frontend @@ -51,16 +45,13 @@ frontend: image: repository: harbor.dvirlabs.com/my-apps/invy-frontend pullPolicy: IfNotPresent - tag: "latest" - + tag: "master-ef79895" service: type: ClusterIP port: 80 targetPort: 80 - env: VITE_API_URL: "https://api-invy.dvirlabs.com" - resources: requests: cpu: 50m @@ -68,7 +59,6 @@ frontend: limits: cpu: 200m memory: 256Mi - ingress: enabled: true className: "traefik" @@ -85,7 +75,6 @@ frontend: - secretName: invy-tls hosts: - invy.dvirlabs.com - # PostgreSQL configuration postgres: name: db @@ -93,23 +82,19 @@ postgres: repository: postgres tag: "16-alpine" pullPolicy: IfNotPresent - user: invy_user password: invy_password database: invy_db port: 5432 - service: type: ClusterIP port: 5432 targetPort: 5432 - persistence: enabled: true accessMode: ReadWriteOnce storageClass: "nfs-client" size: 10Gi - resources: requests: cpu: 100m @@ -117,10 +102,9 @@ postgres: limits: cpu: 1000m memory: 1Gi - # Ingress configuration ingress: - enabled: false # Individual frontend/backend ingress resources handle routing instead + enabled: false # Individual frontend/backend ingress resources handle routing instead className: "traefik" annotations: cert-manager.io/cluster-issuer: "letsencrypt-prod" @@ -134,37 +118,31 @@ ingress: - secretName: invy-tls hosts: - invy.dvirlabs.com - # Service Account serviceAccount: create: true annotations: {} name: "" - # Pod annotations podAnnotations: {} - # Pod security context podSecurityContext: {} - # fsGroup: 2000 +# fsGroup: 2000 # Container security context securityContext: {} - # capabilities: - # drop: - # - ALL - # readOnlyRootFilesystem: true - # runAsNonRoot: true - # runAsUser: 1000 +# capabilities: +# drop: +# - ALL +# readOnlyRootFilesystem: true +# runAsNonRoot: true +# runAsUser: 1000 # Node selector nodeSelector: {} - # Tolerations tolerations: [] - # Affinity affinity: {} - # Replica count (default for both frontend and backend if not specified) replicaCount: 1