-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
Description
Hi 👋
The recent tag move for latest -> 8 started failing our kubernetes liveness probes:
Liveness: exec [mysqladmin ping --host 127.0.0.1 --port 3306] delay=5s timeout=5s period=10s #success=1 #failure=3
The mysql docs suggest that this tool should be usable with both MySQL 5.7 and 8.0:
- https://dev.mysql.com/doc/refman/5.7/en/mysqladmin.html
- https://dev.mysql.com/doc/refman/8.0/en/mysqladmin.html
It seems there may be other tools missing from the mysql:8 image as well:
comm \
<(docker run --entrypoint sh -w /usr/bin mysql:5 -c 'ls mysql*') \
<(docker run --entrypoint sh -w /usr/bin mysql:8 -c 'ls mysql*')
mysql
mysql_config_editor
mysql_embedded
mysql_install_db
mysql_plugin
mysql_secure_installation
mysql_ssl_rsa_setup
mysql_tzinfo_to_sql
mysql_upgrade
mysqladmin
mysqlbinlog
mysqlcheck
mysqld_multi
mysqld_safe
mysqldump
mysqldumpslow
mysqlimport
mysqlpump
mysqlshow
mysqlslapCheers
sandervh14, tomislater, anpieber and quantrung9