Files
helm-charts/notely/values.yaml
domrichardson 18c5933307 first commit
2026-03-30 11:27:28 +01:00

112 lines
2.0 KiB
YAML

replicaCount: 2
nameOverride: ""
fullnameOverride: ""
image:
repository: gitea.hostxtra.co.uk/mrhid6/notely
tag: latest
pullPolicy: IfNotPresent
imagePullSecrets: []
podAnnotations: {}
podLabels: {}
serviceAccount:
create: false
automount: true
annotations: {}
name: ""
service:
type: ClusterIP
port: 8080
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi
appConfig:
port: "8080"
frontendUrl: "http://localhost"
sessionTtlHours: "168"
redisAddr: ""
redisDb: "0"
secrets:
jwtSecret: "change-me-super-secret-jwt-key-minimum-32-characters"
encryptionKey: "00000000000000000000000000000000"
defaultAdminEmail: "admin@notely.local"
defaultAdminUsername: "admin"
defaultAdminPassword: "ChangeThisAdminPassword123!"
mongodbUri: ""
redisUser: ""
redisPassword: ""
mongodb:
enabled: true
image:
repository: mongo
tag: "8.0"
pullPolicy: IfNotPresent
auth:
username: admin
password: password
database: notely
persistence:
enabled: true
storageClass: ""
size: 10Gi
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi
redis:
enabled: true
image:
repository: redis
tag: 8-alpine
pullPolicy: IfNotPresent
service:
port: 6379
auth:
enabled: false
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 250m
memory: 256Mi
ingress:
enabled: false
className: nginx
annotations: {}
hosts:
- host: notely.local
paths:
- path: /
pathType: Prefix
tls: []
autoscaling:
enabled: false
minReplicas: 2
maxReplicas: 10
targetCPUUtilizationPercentage: 70
targetMemoryUtilizationPercentage: 80
nodeSelector: {}
tolerations: []
affinity: {}