mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
[CI] fix health command syntax
This commit is contained in:
parent
74bc20cd6d
commit
3e2ef7ca92
1 changed files with 3 additions and 6 deletions
9
.github/workflows/ansible-test-plugins.yml
vendored
9
.github/workflows/ansible-test-plugins.yml
vendored
|
@ -170,13 +170,12 @@ jobs:
|
||||||
env:
|
env:
|
||||||
MARIADB_ROOT_PASSWORD: msandbox
|
MARIADB_ROOT_PASSWORD: msandbox
|
||||||
MYSQL_ROOT_PASSWORD: msandbox
|
MYSQL_ROOT_PASSWORD: msandbox
|
||||||
HEALTH_CMD: ${{ matrix.db_engine_name == 'mysql' && 'mysqladmin' || 'mariadb-admin' }}
|
|
||||||
ports:
|
ports:
|
||||||
- 3307:3306
|
- 3307:3306
|
||||||
# We write our own health-cmd because the mariadb container does not
|
# We write our own health-cmd because the mariadb container does not
|
||||||
# provide a healthcheck
|
# provide a healthcheck
|
||||||
options: >-
|
options: >-
|
||||||
--health-cmd "${{ env.HEALTH_CMD }} ping -P 3306 -pmsandbox |grep alive || exit 1"
|
--health-cmd "${{ matrix.db_engine_name == 'mysql' && 'mysqladmin' || 'mariadb-admin' }} ping -P 3306 -pmsandbox |grep alive || exit 1"
|
||||||
--health-start-period 10s
|
--health-start-period 10s
|
||||||
--health-interval 10s
|
--health-interval 10s
|
||||||
--health-timeout 5s
|
--health-timeout 5s
|
||||||
|
@ -187,11 +186,10 @@ jobs:
|
||||||
env:
|
env:
|
||||||
MARIADB_ROOT_PASSWORD: msandbox
|
MARIADB_ROOT_PASSWORD: msandbox
|
||||||
MYSQL_ROOT_PASSWORD: msandbox
|
MYSQL_ROOT_PASSWORD: msandbox
|
||||||
HEALTH_CMD: ${{ matrix.db_engine_name == 'mysql' && 'mysqladmin' || 'mariadb-admin' }}
|
|
||||||
ports:
|
ports:
|
||||||
- 3308:3306
|
- 3308:3306
|
||||||
options: >-
|
options: >-
|
||||||
--health-cmd "${{ env.HEALTH_CMD }} ping -P 3306 -pmsandbox |grep alive || exit 1"
|
--health-cmd "${{ matrix.db_engine_name == 'mysql' && 'mysqladmin' || 'mariadb-admin' }} ping -P 3306 -pmsandbox |grep alive || exit 1"
|
||||||
--health-start-period 10s
|
--health-start-period 10s
|
||||||
--health-interval 10s
|
--health-interval 10s
|
||||||
--health-timeout 5s
|
--health-timeout 5s
|
||||||
|
@ -202,11 +200,10 @@ jobs:
|
||||||
env:
|
env:
|
||||||
MARIADB_ROOT_PASSWORD: msandbox
|
MARIADB_ROOT_PASSWORD: msandbox
|
||||||
MYSQL_ROOT_PASSWORD: msandbox
|
MYSQL_ROOT_PASSWORD: msandbox
|
||||||
HEALTH_CMD: ${{ matrix.db_engine_name == 'mysql' && 'mysqladmin' || 'mariadb-admin' }}
|
|
||||||
ports:
|
ports:
|
||||||
- 3309:3306
|
- 3309:3306
|
||||||
options: >-
|
options: >-
|
||||||
--health-cmd "${{ env.HEALTH_CMD }} ping -P 3306 -pmsandbox |grep alive || exit 1"
|
--health-cmd "${{ matrix.db_engine_name == 'mysql' && 'mysqladmin' || 'mariadb-admin' }} ping -P 3306 -pmsandbox |grep alive || exit 1"
|
||||||
--health-start-period 10s
|
--health-start-period 10s
|
||||||
--health-interval 10s
|
--health-interval 10s
|
||||||
--health-timeout 5s
|
--health-timeout 5s
|
||||||
|
|
Loading…
Add table
Reference in a new issue