2025-12-05 07:13:34 +00:00

28 lines
633 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Backend image
backend:
image:
repository: harbor.dvirlabs.com/my-apps/my-recipes-backend
tag: master-35e1584
pullPolicy: IfNotPresent
replicas: 1
tag: master-c6eaae7
# Frontend image
frontend:
image:
repository: registry.dvirlabs.com/my-apps/my-recipes-frontend
tag: v1.0.0
pullPolicy: IfNotPresent
replicas: 1
# Postgres DB
postgres:
image: postgres:16
user: recipes_user
password: recipes_password # POC only later use Secret/ExternalSecret
database: recipes_db
port: 5432
persistence:
enabled: true
accessMode: ReadWriteOnce
storageClass: "nfs-client"
size: 8Gi