From cc412323a5d2288456d6695a150028f6538e8f69 Mon Sep 17 00:00:00 2001 From: shahargl Date: Wed, 9 Oct 2024 16:20:22 +0300 Subject: [PATCH] feat: return db --- charts/keep/values.yaml | 49 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/charts/keep/values.yaml b/charts/keep/values.yaml index 38c56ce..dedee8a 100644 --- a/charts/keep/values.yaml +++ b/charts/keep/values.yaml @@ -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 + - 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: [] \ No newline at end of file