feat: add rustical
This commit is contained in:
parent
0153c9958c
commit
1a24447a49
8 changed files with 368 additions and 18 deletions
63
k8s/charts/helm-rustical/values.yaml
Normal file
63
k8s/charts/helm-rustical/values.yaml
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
# Configuration is managed in k8s/argo-apps/rustical.yaml
|
||||
replicaCount: 1
|
||||
|
||||
image:
|
||||
repository: ghcr.io/lennart-k/rustical
|
||||
pullpolicy: Always
|
||||
tag: ""
|
||||
|
||||
imagePullSecrets: []
|
||||
podAnnotations: {}
|
||||
podSecurityContext: {}
|
||||
securityContext: {}
|
||||
|
||||
service:
|
||||
type: ClusterIP
|
||||
port: 4000
|
||||
targetPort: 4000
|
||||
|
||||
ingress:
|
||||
enabled: false
|
||||
|
||||
persistence:
|
||||
enabled: true
|
||||
storageClass: "truenas-nfs-csi"
|
||||
accessMode: ReadWriteMany
|
||||
size: 50Gi
|
||||
existingClaim: ""
|
||||
|
||||
autoscaling:
|
||||
enabled: false
|
||||
|
||||
resources: {}
|
||||
|
||||
livenessProbe:
|
||||
tcpSocket:
|
||||
port: 4000
|
||||
initialDelaySeconds: 30
|
||||
timeoutSeconds: 15
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
periodSeconds: 10
|
||||
|
||||
readinessProbe:
|
||||
tcpSocket:
|
||||
port: 4000
|
||||
initialDelaySeconds: 15
|
||||
timeoutSeconds: 2
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
periodSeconds: 10
|
||||
|
||||
nodeSelector: {}
|
||||
tolerations: []
|
||||
affinity: {}
|
||||
|
||||
env: {}
|
||||
|
||||
secret:
|
||||
enabled: true
|
||||
existingSecretName: "rustical"
|
||||
|
||||
debug:
|
||||
enabled: false
|
||||
Loading…
Add table
Add a link
Reference in a new issue