Skip to content

Commit

Permalink
DBZ-6873 Use MySQL 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jpechane committed Nov 8, 2023
1 parent 7305f35 commit 77cfed4
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion connect-base/2.5/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME
FROM localhost:5500/debeziumquay/kafka:2.5
FROM $DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME/kafka:2.5

LABEL maintainer="Debezium Community"

Expand Down
2 changes: 1 addition & 1 deletion connect/2.5/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME
FROM localhost:5500/debeziumquay/connect-base:2.5
FROM $DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME/connect-base:2.5

LABEL maintainer="Debezium Community"

Expand Down
2 changes: 1 addition & 1 deletion examples/mysql-gtids/2.5/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mysql:8.1
FROM mysql:8.2

LABEL maintainer="Debezium Community"

Expand Down
4 changes: 2 additions & 2 deletions examples/mysql-gtids/2.5/mysql.cnf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# For advice on how to change settings please see
# https://dev.mysql.com/doc/refman/8.1/en/server-configuration-defaults.html
# https://dev.mysql.com/doc/refman/8.2/en/server-configuration-defaults.html

[mysqld]
#
Expand Down Expand Up @@ -46,7 +46,7 @@ enforce_gtid_consistency = on
# Server ID is required, but this will vary on production systems
server-id = 223344
log_bin = mysql-bin
expire_logs_days = 1
binlog_expire_logs_seconds = 86400
binlog_format = row

default_authentication_plugin = mysql_native_password
2 changes: 1 addition & 1 deletion examples/mysql-replication/master/2.5/master.cnf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# For advice on how to change settings please see
# https://dev.mysql.com/doc/refman/8.1/en/server-configuration-defaults.html
# https://dev.mysql.com/doc/refman/8.2/en/server-configuration-defaults.html

[mysqld]
server-id = 1
Expand Down
2 changes: 1 addition & 1 deletion examples/mysql/2.5/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mysql:8.1
FROM mysql:8.2

LABEL maintainer="Debezium Community"

Expand Down
4 changes: 2 additions & 2 deletions examples/mysql/2.5/mysql.cnf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# For advice on how to change settings please see
# https://dev.mysql.com/doc/refman/8.1/en/server-configuration-defaults.html
# https://dev.mysql.com/doc/refman/8.2/en/server-configuration-defaults.html

[mysqld]
#
Expand Down Expand Up @@ -40,7 +40,7 @@ symbolic-links=0
# Server ID is required, but this will vary on production systems
server-id = 223344
log_bin = mysql-bin
expire_logs_days = 1
binlog_expire_logs_seconds = 86400
binlog_format = row

default_authentication_plugin = mysql_native_password

0 comments on commit 77cfed4

Please sign in to comment.