first commit
This commit is contained in:
111
notely/values.yaml
Normal file
111
notely/values.yaml
Normal file
@@ -0,0 +1,111 @@
|
||||
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: {}
|
||||
Reference in New Issue
Block a user