37 lines
524 B
YAML
37 lines
524 B
YAML
replicaCount: 1
|
|
|
|
image:
|
|
repository: git.keligrubb.com/keligrubb/kestrelos
|
|
tag: 1.0.1
|
|
pullPolicy: IfNotPresent
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 3000
|
|
|
|
resources:
|
|
limits:
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /health/live
|
|
port: 3000
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|
|
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /health/ready
|
|
port: 3000
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
|
|
ingress:
|
|
enabled: false
|
|
host: kestrelos.local
|
|
tls: []
|