82 lines
1.3 KiB
YAML
82 lines
1.3 KiB
YAML
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
commonLabels: {}
|
|
commonAnnotations: {}
|
|
|
|
backend:
|
|
image:
|
|
repository: calink-backend
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
|
|
replicas: 1
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 250m
|
|
memory: 256Mi
|
|
|
|
env:
|
|
- name: DATABASE_PATH
|
|
value: "/data/app.db"
|
|
|
|
persistence:
|
|
enabled: true
|
|
storageClass: ""
|
|
size: 1Gi
|
|
mountPath: /data
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 8000
|
|
|
|
healthCheck:
|
|
path: /health
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 30
|
|
|
|
frontend:
|
|
image:
|
|
repository: calink-frontend
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
|
|
replicas: 1
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 200m
|
|
memory: 256Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 80
|
|
|
|
healthCheck:
|
|
path: /
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 30
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: ""
|
|
annotations: {}
|
|
# kubernetes.io/ingress.class: nginx
|
|
# cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
hosts:
|
|
- host: calink.example.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls: []
|
|
# - secretName: calink-tls
|
|
# hosts:
|
|
# - calink.example.com
|