We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b289048 commit 4073c79Copy full SHA for 4073c79
2 files changed
charts/devlake/templates/statefulsets.yaml
@@ -62,6 +62,9 @@ spec:
62
- "--character-set-server=utf8mb4"
63
- "--collation-server=utf8mb4_bin"
64
- "--skip-log-bin"
65
+ {{- with .Values.mysql.extraArgs }}
66
+ {{- toYaml . | nindent 12 }}
67
+ {{- end }}
68
ports:
69
- name: mysql
70
containerPort: 3306
charts/devlake/values.yaml
@@ -79,6 +79,8 @@ mysql:
79
# affinity config for mysql if have
80
affinity: {}
81
82
+ extraArgs: []
83
+
84
extraLabels: {}
85
86
securityContext: {}
0 commit comments