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