summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTristan Cacqueray <tdecacqu@redhat.com>2020-07-09 13:38:20 +0000
committerTristan Cacqueray <tdecacqu@redhat.com>2020-07-09 13:38:20 +0000
commit1f7d3a879b2d2ff379cc174c15047d14ed56abd4 (patch)
tree97521e9963cb4ecabfdd87eb41c473094bbd0719 /tools
parent141347e0820cc1340dddbf6168fb183c83e313ba (diff)
downloadzuul-1f7d3a879b2d2ff379cc174c15047d14ed56abd4.tar.gz
tests: use a more inclusive word for the default password
This change removes problematic language in the test environment. Change-Id: I6f81ab68314902f0239babf887de04f8e30d8954
Diffstat (limited to 'tools')
-rw-r--r--tools/docker-compose.yaml2
-rwxr-xr-xtools/test-setup-docker.sh2
-rwxr-xr-xtools/test-setup.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/docker-compose.yaml b/tools/docker-compose.yaml
index e826a3fb8..d7c3ce0cd 100644
--- a/tools/docker-compose.yaml
+++ b/tools/docker-compose.yaml
@@ -5,7 +5,7 @@ services:
container_name: zuul-test-mysql
image: mysql:5.7
environment:
- - MYSQL_ROOT_PASSWORD=insecure_slave
+ - MYSQL_ROOT_PASSWORD=insecure_worker
ports:
- "3306:3306"
tmpfs:
diff --git a/tools/test-setup-docker.sh b/tools/test-setup-docker.sh
index 0b9879d8f..c64dccb41 100755
--- a/tools/test-setup-docker.sh
+++ b/tools/test-setup-docker.sh
@@ -25,7 +25,7 @@ else
fi
-MYSQL="${DOCKER} exec zuul-test-mysql mysql -u root -pinsecure_slave"
+MYSQL="${DOCKER} exec zuul-test-mysql mysql -u root -pinsecure_worker"
if [ "${COMPOSE}" == "docker-compose" ]; then
docker-compose rm -sf
diff --git a/tools/test-setup.sh b/tools/test-setup.sh
index 183ba6adf..7416040ae 100755
--- a/tools/test-setup.sh
+++ b/tools/test-setup.sh
@@ -25,7 +25,7 @@ sudo service zookeeper start
# The root password for the MySQL database; pass it in via
# MYSQL_ROOT_PW.
-DB_ROOT_PW=${MYSQL_ROOT_PW:-insecure_slave}
+DB_ROOT_PW=${MYSQL_ROOT_PW:-insecure_worker}
# This user and its password are used by the tests, if you change it,
# your tests might fail.