You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| <aname="input_app_version"></a> [app\_version](#input\_app\_version)| Version of the MySQL application that will be deployed. |`string`|`"8.0.29-debian-11-r9"`| no |
183
+
| <aname="input_app_version"></a> [app\_version](#input\_app\_version)| Version of the MySQL application that will be deployed. |`string`|`"8.0.36-debian-12-r10"`| no |
184
184
| <aname="input_azure_container_name"></a> [azure\_container\_name](#input\_azure\_container\_name)| Azure container name |`string`|`""`| no |
185
185
| <aname="input_azure_storage_account_key"></a> [azure\_storage\_account\_key](#input\_azure\_storage\_account\_key)| Azure storage account key |`string`|`""`| no |
186
186
| <aname="input_azure_storage_account_name"></a> [azure\_storage\_account\_name](#input\_azure\_storage\_account\_name)| Azure storage account name |`string`|`""`| no |
187
187
| <aname="input_bucket_provider_type"></a> [bucket\_provider\_type](#input\_bucket\_provider\_type)| Choose what type of provider you want (s3, gcs) |`string`|`"gcs"`| no |
188
-
| <aname="input_chart_version"></a> [chart\_version](#input\_chart\_version)| Version of the Mysql chart that will be used to deploy MySQL application. |`string`|`"9.2.0"`| no |
188
+
| <aname="input_chart_version"></a> [chart\_version](#input\_chart\_version)| Version of the Mysql chart that will be used to deploy MySQL application. |`string`|`"10.1.0"`| no |
189
189
| <aname="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name)| Specifies the name of the EKS cluster to deploy the MySQL application on. |`string`|`""`| no |
190
190
| <aname="input_create_namespace"></a> [create\_namespace](#input\_create\_namespace)| Specify whether or not to create the namespace if it does not already exist. Set it to true to create the namespace. |`string`|`true`| no |
191
191
| <aname="input_custom_user_password"></a> [custom\_user\_password](#input\_custom\_user\_password)| custom user password for MongoDB |`string`|`""`| no |
Copy file name to clipboardExpand all lines: helm/values/mysqldb/values.yaml
+65-14Lines changed: 65 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,14 @@ global:
19
19
mysql_metrics_exporter:
20
20
password: ${metrics_exporter_password}
21
21
22
+
compatibility:
23
+
## Compatibility adaptations for Openshift
24
+
##
25
+
openshift:
26
+
## @param global.compatibility.openshift.adaptSecurityContext Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation)
27
+
##
28
+
adaptSecurityContext: auto
29
+
22
30
## @section Common parameters
23
31
24
32
## @param kubeVersion Force target Kubernetes version (using Helm capabilities if not set)
@@ -49,6 +57,9 @@ commonLabels:
49
57
##
50
58
extraDeploy: []
51
59
60
+
serviceBindings:
61
+
enabled: false
62
+
52
63
## Enable diagnostic mode in the deployment
53
64
##
54
65
diagnosticMode:
@@ -189,18 +200,17 @@ primary:
189
200
explicit_defaults_for_timestamp
190
201
basedir=/opt/bitnami/mysql
191
202
plugin_dir=/opt/bitnami/mysql/lib/plugin
192
-
port=3306
203
+
port={{ .Values.primary.containerPorts.mysql }}
193
204
socket=/opt/bitnami/mysql/tmp/mysql.sock
194
205
datadir=/bitnami/mysql/data
195
206
tmpdir=/opt/bitnami/mysql/tmp
196
207
max_allowed_packet=16M
197
-
bind-address=0.0.0.0
208
+
bind-address=*
198
209
pid-file=/opt/bitnami/mysql/tmp/mysqld.pid
199
-
log_error=/opt/bitnami/mysql/logs/mysqld.log
210
+
log-error=/opt/bitnami/mysql/logs/mysqld.log
200
211
character-set-server=UTF8
201
212
collation-server=utf8_general_ci
202
-
slow_query_log=1
203
-
slow_query_log_file=/bitnami/mysql/slow-log.log
213
+
slow_query_log=0
204
214
long_query_time=10.0
205
215
206
216
[client]
@@ -220,6 +230,8 @@ primary:
220
230
## @param primary.updateStrategy.type Update strategy type for the MySQL primary statefulset
0 commit comments