Files
homelab/k8s/applications/dev-tools/values.yaml
T

46 lines
703 B
YAML

replicaCount: 1
image:
repository: localhost:5000/claude-terminal
pullPolicy: IfNotPresent
tag: latest
service:
type: ClusterIP
port: 8080
ingress:
enabled: true
className: nginx
annotations:
cert-manager.io/cluster-issuer: homelab-ca
hosts:
- host: claude.riotpiao.homelab.com
paths:
- path: /
pathType: Prefix
tls:
- secretName: claude-terminal-tls
hosts:
- claude.riotpiao.homelab.com
persistence:
enabled: true
storageClass: longhorn
size: 10Gi
mountPath: /root/.claude
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi
nodeSelector: {}
tolerations: []
affinity: {}