@@ -179,9 +179,7 @@ initdbScripts:
179179 echo loose-group_replication_local_address=$mgr_host:24901 >> $base_conf_file
180180 echo report_host=$mgr_host >> $base_conf_file
181181 echo loose-group_replication_group_seeds="$svc_mgr_host-0:24901,$svc_mgr_host-1:24901,$svc_mgr_host-2:24901" >> $base_conf_file
182-
183- echo plugin_load_add='group_replication.so' >> $base_conf_file
184-
182+ echo loose-group_replication_start_on_boot='OFF' >> $base_conf_file
185183 echo max_connections=$MAX_CONNECTION_LIMIT >> $base_conf_file
186184
187185# # @param initdbScriptsConfigMap ConfigMap with the initdb scripts (Note: Overrides `initdbScripts`)
@@ -218,7 +216,6 @@ primary:
218216 configuration : |-
219217 [mysqld]
220218 # server
221- max_connections=10000
222219 default_authentication_plugin=caching_sha2_password
223220 skip-name-resolve
224221 relay-log=relay-log
@@ -260,7 +257,6 @@ primary:
260257 # Multi-threaded Replication
261258 replica_preserve_commit_order=ON
262259 replica_parallel_workers=8
263- replica_parallel_type=LOGICAL_CLOCK
264260
265261 # Group Replication Settings
266262
@@ -610,6 +606,10 @@ router:
610606 # #
611607 replicaCount : 2
612608
609+ configuration : |-
610+ [routing:bootstrap_rw]
611+ max_connections=1000
612+
613613 # # @param primary.existingConfigmap Name of existing ConfigMap with MySQL Primary configuration.
614614 # # NOTE: When it's set the 'configuration' parameter is ignored
615615 # #
@@ -716,13 +716,17 @@ router:
716716 # # cpu: 250m
717717 # # memory: 256Mi
718718 # #
719- limits : {}
719+ limits :
720+ cpu : 250m
721+ memory : 256Mi
720722 # # Examples:
721723 # # requests:
722724 # # cpu: 250m
723725 # # memory: 256Mi
724726 # #
725- requests : {}
727+ requests :
728+ cpu : 250m
729+ memory : 256Mi
726730 # # Configure extra options for liveness probe
727731 # # ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
728732 # # @param secondary.livenessProbe.enabled Enable livenessProbe
@@ -1117,12 +1121,16 @@ metrics:
11171121 # # limits:
11181122 # # cpu: 100m
11191123 # # memory: 256Mi
1120- limits : {}
1124+ limits :
1125+ cpu : 100m
1126+ memory : 256Mi
11211127 # # Examples:
11221128 # # requests:
11231129 # # cpu: 100m
11241130 # # memory: 256Mi
1125- requests : {}
1131+ requests :
1132+ cpu : 100m
1133+ memory : 256Mi
11261134 containerSecurityContext :
11271135 enabled : true
11281136 runAsUser : 1001
0 commit comments