mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-07-23 05:10:24 -07:00
Attempt to fix "invalid syntax"
This commit is contained in:
parent
10d497e2cc
commit
c5c32f7751
1 changed files with 3 additions and 9 deletions
12
.github/workflows/ansible-test-plugins.yml
vendored
12
.github/workflows/ansible-test-plugins.yml
vendored
|
@ -92,9 +92,7 @@ jobs:
|
||||||
# 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 "mysqladmin ping -P 3306 -pmsandbox"
|
--health-cmd mysqladmin ping -P 3306 -pmsandbox |grep alive || exit 1
|
||||||
| grep alive
|
|
||||||
|| exit 1
|
|
||||||
--health-start-period 10s
|
--health-start-period 10s
|
||||||
--health-interval 10s
|
--health-interval 10s
|
||||||
--health-timeout 5s
|
--health-timeout 5s
|
||||||
|
@ -110,9 +108,7 @@ jobs:
|
||||||
volumes:
|
volumes:
|
||||||
- ${{ github.workspace }}/tests/integration/setup_mysql/replica1/:/etc/mysql/conf.d/
|
- ${{ github.workspace }}/tests/integration/setup_mysql/replica1/:/etc/mysql/conf.d/
|
||||||
options: >-
|
options: >-
|
||||||
--health-cmd "mysqladmin ping -P 3306 -pmsandbox"
|
--health-cmd mysqladmin ping -P 3306 -pmsandbox |grep alive || exit 1
|
||||||
| grep alive
|
|
||||||
|| exit 1
|
|
||||||
--health-start-period 10s
|
--health-start-period 10s
|
||||||
--health-interval 10s
|
--health-interval 10s
|
||||||
--health-timeout 5s
|
--health-timeout 5s
|
||||||
|
@ -128,9 +124,7 @@ jobs:
|
||||||
volumes:
|
volumes:
|
||||||
- ${{ github.workspace }}/tests/integration/setup_mysql/replica2/:/etc/mysql/conf.d/
|
- ${{ github.workspace }}/tests/integration/setup_mysql/replica2/:/etc/mysql/conf.d/
|
||||||
options: >-
|
options: >-
|
||||||
--health-cmd "mysqladmin ping -P 3306 -pmsandbox"
|
--health-cmd mysqladmin ping -P 3306 -pmsandbox |grep alive || exit 1
|
||||||
| 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
Add a link
Reference in a new issue