frontend: update tag to master-ae27244

This commit is contained in:
woodpecker-bot 2026-05-08 04:50:19 +00:00
parent 3bc2846d3c
commit b5cb4aa3b5

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/brand-master-backend repository: harbor.dvirlabs.com/my-apps/brand-master-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: 200m cpu: 200m
@ -23,7 +20,6 @@ backend:
limits: limits:
cpu: 1000m cpu: 1000m
memory: 1Gi memory: 1Gi
env: env:
PYTHONUNBUFFERED: "1" PYTHONUNBUFFERED: "1"
BACKEND_URL: "https://api-brand-master.dvirlabs.com" BACKEND_URL: "https://api-brand-master.dvirlabs.com"
@ -38,12 +34,10 @@ backend:
SMTP_USERNAME: "" SMTP_USERNAME: ""
SMTP_PASSWORD: "" SMTP_PASSWORD: ""
SMTP_FROM: "noreply@brand-master.com" SMTP_FROM: "noreply@brand-master.com"
# JWT Secret Key (IMPORTANT: Change this in production!) # JWT Secret Key (IMPORTANT: Change this in production!)
jwtSecretKey: "your-secret-key-change-this-in-production" jwtSecretKey: "your-secret-key-change-this-in-production"
jwtAlgorithm: "HS256" jwtAlgorithm: "HS256"
jwtExpireMinutes: "30" jwtExpireMinutes: "30"
# Persistent storage for product images # Persistent storage for product images
persistence: persistence:
enabled: true enabled: true
@ -51,7 +45,6 @@ backend:
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
size: 15Gi size: 15Gi
mountPath: /app/uploads mountPath: /app/uploads
ingress: ingress:
enabled: true enabled: true
className: "traefik" className: "traefik"
@ -68,7 +61,6 @@ backend:
- secretName: api-brand-master-tls - secretName: api-brand-master-tls
hosts: hosts:
- api-brand-master.dvirlabs.com - api-brand-master.dvirlabs.com
# Frontend configuration # Frontend configuration
frontend: frontend:
name: frontend name: frontend
@ -76,16 +68,13 @@ frontend:
image: image:
repository: harbor.dvirlabs.com/my-apps/brand-master-frontend repository: harbor.dvirlabs.com/my-apps/brand-master-frontend
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: "latest" tag: "master-ae27244"
service: service:
type: ClusterIP type: ClusterIP
port: 80 port: 80
targetPort: 80 targetPort: 80
env: env:
VITE_API_URL: "https://api-brand-master.dvirlabs.com" VITE_API_URL: "https://api-brand-master.dvirlabs.com"
resources: resources:
requests: requests:
cpu: 50m cpu: 50m
@ -93,7 +82,6 @@ frontend:
limits: limits:
cpu: 200m cpu: 200m
memory: 256Mi memory: 256Mi
ingress: ingress:
enabled: true enabled: true
className: "traefik" className: "traefik"
@ -110,7 +98,6 @@ frontend:
- secretName: brand-master-tls - secretName: brand-master-tls
hosts: hosts:
- brand-master.dvirlabs.com - brand-master.dvirlabs.com
# PostgreSQL configuration # PostgreSQL configuration
postgres: postgres:
name: db name: db
@ -118,23 +105,19 @@ postgres:
repository: harbor.dvirlabs.com/base-images/postgres repository: harbor.dvirlabs.com/base-images/postgres
tag: "16-alpine" tag: "16-alpine"
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
user: brand_master_user user: brand_master_user
password: brand_master_password password: brand_master_password
database: brand_master_db database: brand_master_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
@ -142,34 +125,29 @@ postgres:
limits: limits:
cpu: 1000m cpu: 1000m
memory: 1Gi memory: 1Gi
# 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: {}