diff --git a/helm/covidok/templates/minio.yaml b/helm/covidok/templates/minio.yaml index 8312f72..d48a0f5 100644 --- a/helm/covidok/templates/minio.yaml +++ b/helm/covidok/templates/minio.yaml @@ -45,3 +45,36 @@ spec: name: minio command: ["minio"] args: ["server", "/data"] + livenessProbe: + httpGet: + path: /minio/health/live + port: 9000 + scheme: HTTP + initialDelaySeconds: 120 + periodSeconds: 15 + timeoutSeconds: 10 + successThreshold: 1 + failureThreshold: 3 +{{ if .Values.persistence.enabled }} + volumeMounts: + - name: minio-data + mountPath: /data + volumes: + - name: minio-data + persistentVolumeClaim: + claimName: minio-pvc-{{ .Release.Name }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: minio-pvc-{{ .Release.Name }} + labels: + {{- include "covidok.labels" . | nindent 4 }} +spec: + storageClassName: {{ .Values.persistence.storageClass }} + accessModes: + - ReadWriteOnce + resources: + requests: + storage: {{ .Values.persistence.claimSize }} +{{ end }} diff --git a/helm/covidok/templates/mysql.yaml b/helm/covidok/templates/mysql.yaml index e8db323..93cc1c2 100644 --- a/helm/covidok/templates/mysql.yaml +++ b/helm/covidok/templates/mysql.yaml @@ -48,3 +48,27 @@ spec: ports: - containerPort: 3306 name: mysql +{{ if .Values.persistence.enabled }} + volumeMounts: + - name: mysql-data + mountPath: /var/lib/mysql + volumes: + - name: mysql-data + persistentVolumeClaim: + claimName: mysql-pvc-{{ .Release.Name }} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: mysql-pvc-{{ .Release.Name }} + labels: + {{- include "covidok.labels" . | nindent 4 }} +spec: + storageClassName: {{ .Values.persistence.storageClass }} + accessModes: + - ReadWriteOnce + resources: + requests: + storage: {{ .Values.persistence.claimSize }} +{{ end }} + diff --git a/helm/covidok/values.yaml b/helm/covidok/values.yaml index 463f6e4..ea4cde7 100644 --- a/helm/covidok/values.yaml +++ b/helm/covidok/values.yaml @@ -16,7 +16,6 @@ images: name: redis tag: 6 pullPolicy: Always - # Overrides the image tag whose default is the chart appVersion. config: minio: @@ -28,6 +27,10 @@ config: password: "covidok" redis: port: "6379" +persistence: + enabled: false + #storageClass: + #claimSize: imagePullSecrets: []