Compare commits

...

3 Commits

Author SHA1 Message Date
f1b4020287 change flow control 2024-06-22 18:26:19 -05:00
969357a664 change null handling 2024-06-22 18:22:25 -05:00
5685190e43 remove field not declared in schema 2024-06-22 18:18:03 -05:00
3 changed files with 22 additions and 23 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v2
name: mysql-cluster
version: 0.2.1
version: 0.2.4
description: Chart for a mysql cluster
keywords:
- database

View File

@@ -21,31 +21,31 @@ spec:
version: {{ .Values.cluster.image.version }}
tlsUseSelfSigned: true
secretName: {{ .Values.cluster.exisitingCredentialsSecret }}
{{- if .Values.cluster.podSpec }}
podSpec:
{{- with .Values.cluster.podSpec }}
{{ toYaml . | nindent 4 }}
{{ toYaml .Values.cluster.podSpec | nindent 4 }}
{{- end }}
{{- if .Values.cluster.podAnnotations }}
podAnnotations:
{{- with .Values.cluster.podAnnotations }}
{{ toYaml . | nindent 4 }}
{{ toYaml .Values.cluster.podAnnotations | nindent 4 }}
{{- end }}
{{- if .Values.cluster.podLabels }}
podLabels:
{{- with .Values.cluster.podLabels }}
{{ toYaml . | nindent 4 }}
{{ toYaml .Values.cluster.podLabels | nindent 4 }}
{{- end }}
router:
instances: {{ required "router.instances is required" .Values.cluster.router.instances }}
{{- if .Values.cluster.router.podSpec }}
podSpec:
{{- with .Values.cluster.router.podSpec }}
{{- toYaml . | nindent 6 }}
{{- toYaml .Values.cluster.router.podSpec | nindent 6 }}
{{- end }}
{{- if .Values.cluster.router.podAnnotations }}
podAnnotations:
{{- with .Values.cluster.router.podAnnotations }}
{{- toYaml . | nindent 6 }}
{{- toYaml .Values.cluster.router.podAnnotations | nindent 6 }}
{{- end }}
{{- if .Values.cluster.router.podLabels }}
podLabels:
{{- with .Values.cluster.router.podLabels }}
{{- toYaml . | nindent 6 }}
{{- toYaml .Values.cluster.router.podLabels | nindent 6 }}
{{- end }}
tlsSecretName: {{ include "cluster.name" . }}-router-tls
logs:

View File

@@ -40,7 +40,6 @@ cluster:
logs:
error:
enabled: true
collect: false
general:
enabled: false