frontend: update tag to master-ef79895

This commit is contained in:
woodpecker-bot 2025-12-29 18:50:34 +00:00
parent a60b4cdafc
commit b6ffdd18e1

View File

@ -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,7 +102,6 @@ postgres:
limits:
cpu: 1000m
memory: 1Gi
# Ingress configuration
ingress:
enabled: false # Individual frontend/backend ingress resources handle routing instead
@ -134,16 +118,13 @@ ingress:
- secretName: invy-tls
hosts:
- invy.dvirlabs.com
# Service Account
serviceAccount:
create: true
annotations: {}
name: ""
# Pod annotations
podAnnotations: {}
# Pod security context
podSecurityContext: {}
# fsGroup: 2000
@ -159,12 +140,9 @@ securityContext: {}
# Node selector
nodeSelector: {}
# Tolerations
tolerations: []
# Affinity
affinity: {}
# Replica count (default for both frontend and backend if not specified)
replicaCount: 1