mirror of
https://github.com/rtomik/helm-charts.git
synced 2026-04-10 04:00:52 +00:00
45 lines
689 B
YAML
45 lines
689 B
YAML
image:
|
|
repository: donetick/donetick
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
replicaCount: 1
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 8000
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: "traefik"
|
|
annotations:
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
hosts:
|
|
- host: donetick.example.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- donetick.example.com
|
|
|
|
persistence:
|
|
enabled: true
|
|
storageClass: "longhorn"
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
|
|
env:
|
|
- name: DT_ENV
|
|
value: prod
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi |