Skip to content

Commit

Permalink
feat: return db
Browse files Browse the repository at this point in the history
  • Loading branch information
shahargl committed Oct 9, 2024
1 parent a9649d9 commit cc41232
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions charts/keep/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -242,3 +242,52 @@ websocket:
port: 6001
initialDelaySeconds: 30
periodSeconds: 10

database:
enabled: true
replicaCount: 1
pv:
enabled: true
size: 5Gi
storageClass: ""
pvc:
enabled: true
size: 5Gi
storageClass: ""
image:
repository: mysql
pullPolicy: IfNotPresent
tag: "latest"
env:
- name: MYSQL_ALLOW_EMPTY_PASSWORD
value: yes

Check warning on line 263 in charts/keep/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

263:14 [truthy] truthy value should be one of [false, true]
- name: MYSQL_DATABASE
value: keep
- name: MYSQL_PASSWORD
value: null
imagePullSecrets: []
podAnnotations: {}
podSecurityContext: {}
securityContext: {}
service:
type: ClusterIP
port: 3306
resources: {}
autoscaling:
enabled: false
nodeSelector: {}
tolerations: []
affinity: {}
healthCheck:
enabled: false
probes:
readinessProbe:
tcpSocket:
port: 3306
initialDelaySeconds: 30
periodSeconds: 10
livenessProbe:
tcpSocket:
port: 3306
extraVolumeMounts: []
extraVolumes: []

Check failure on line 293 in charts/keep/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

293:19 [new-line-at-end-of-file] no new line character at the end of file

0 comments on commit cc41232

Please sign in to comment.