- code-server: CPU 15m/15m, memory 225Mi/225Mi - docusaurus: CPU 10m/16m, memory 50Mi/50Mi - headlamp: CPU 15m/15m, memory 100Mi/100Mi - homer: CPU 10m/12m, memory 50Mi/50Mi - mas: CPU 15m/15m, memory 144Mi/203Mi - umami: CPU 15m/15m, memory 271Mi/323Mi
71 lines
1.2 KiB
YAML
71 lines
1.2 KiB
YAML
# Docusaurus Web App Helm Values
|
|
|
|
name: docusaurus
|
|
|
|
image:
|
|
registry: zot0213.kro.kr
|
|
repository: docusaurus
|
|
tag: latest # Updated by ArgoCD Image Updater
|
|
pullPolicy: Always
|
|
|
|
imagePullSecrets:
|
|
- name: zot-secret
|
|
|
|
replicaCount: 1
|
|
containerPort: 80 # nginx
|
|
|
|
service:
|
|
enabled: true
|
|
type: ClusterIP
|
|
port: 80
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: traefik
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
hosts:
|
|
- host: docusaurus0213.kro.kr
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: docusaurus-tls
|
|
hosts:
|
|
- docusaurus0213.kro.kr
|
|
|
|
# Resource settings (VPA lowerBound/upperBound)
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
memory: 50Mi
|
|
limits:
|
|
cpu: 16m
|
|
memory: 50Mi
|
|
|
|
healthCheck:
|
|
enabled: true
|
|
path: /
|
|
startupProbe:
|
|
periodSeconds: 5
|
|
failureThreshold: 30
|
|
livenessProbe:
|
|
initialDelaySeconds: 0
|
|
periodSeconds: 10
|
|
readinessProbe:
|
|
initialDelaySeconds: 0
|
|
periodSeconds: 5
|
|
|
|
env: []
|
|
|
|
externalSecret:
|
|
enabled: false
|
|
|
|
# Affinity - Soft Anti-Affinity to spread pods across nodes
|
|
affinity:
|
|
podAntiAffinity:
|
|
preferredDuringSchedulingIgnoredDuringExecution:
|
|
- weight: 100
|
|
podAffinityTerm:
|
|
topologyKey: kubernetes.io/hostname
|