46 lines
687 B
YAML
46 lines
687 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.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: claude-terminal-tls
|
|
hosts:
|
|
- claude.riotpiao.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: {}
|