DBZ-1661 added mysql replication example images to release-pipeline job

This commit is contained in:
Martin Medek 2023-05-02 21:20:55 +02:00 committed by Ondrej Babec
parent 08ff44874c
commit 1347fca0af
3 changed files with 8 additions and 8 deletions

View File

@ -70,7 +70,7 @@ private ConfigProperties() {
public static final String DATABASE_MYSQL_USERNAME = System.getProperty("test.database.mysql.username", "mysqluser");
public static final String DATABASE_MYSQL_PASSWORD = System.getProperty("test.database.mysql.password", "mysqlpw");
public static final String DATABASE_MYSQL_DBZ_USERNAME = System.getProperty("test.database.mysql.dbz.username", "debezium");
public static final String DATABASE_MYSQL_DBZ_PASSWORD = System.getProperty("test.databaseF.mysql.dbz.password", "dbz");
public static final String DATABASE_MYSQL_DBZ_PASSWORD = System.getProperty("test.database.mysql.dbz.password", "dbz");
public static final Optional<String> DATABASE_MYSQL_HOST = stringOptionalProperty("test.database.mysql.host");
public static final int DATABASE_MYSQL_PORT = Integer.parseInt(System.getProperty("test.database.mysql.port", "3306"));

View File

@ -28,12 +28,12 @@ public final class OcpMySqlDeployer extends AbstractOcpDatabaseDeployer<MySqlCon
private final PersistentVolumeClaim volumeClaim;
private OcpMySqlDeployer(
String project,
Deployment deployment,
List<Service> services,
Secret pullSecret,
PersistentVolumeClaim volumeClaim,
OpenShiftClient ocp) {
String project,
Deployment deployment,
List<Service> services,
Secret pullSecret,
PersistentVolumeClaim volumeClaim,
OpenShiftClient ocp) {
super(project, deployment, services, pullSecret, ocp);
this.volumeClaim = volumeClaim;
}

View File

@ -94,7 +94,7 @@ DEBEZIUM_ADDITIONAL_REPOSITORIES.split().each {
echo "Additional repository $repository will be used"
}
IMAGES = ['connect', 'connect-base', 'examples/mysql', 'examples/mysql-gtids', 'examples/postgres', 'examples/mongodb', 'kafka', 'server', 'zookeeper', 'ui']
IMAGES = ['connect', 'connect-base', 'examples/mysql', 'examples/mysql-gtids', 'examples/mysql-replication/master', 'examples/mysql-replication/replica', 'examples/postgres', 'examples/mongodb', 'kafka', 'server', 'zookeeper', 'ui']
MAVEN_CENTRAL = 'https://repo1.maven.org/maven2'
STAGING_REPO = 'https://s01.oss.sonatype.org/content/repositories'
STAGING_REPO_ID = null