You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Executing the command manually generates the following for the current probe:
sh-4.4$ MYSQL_PWD=\"$MYSQL_PASSWORD\" mysqladmin -u $MYSQL_USER ping
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'dbuser'@'localhost' (using password: YES)'
With the correction:
sh-4.4$ MYSQL_PWD=\"$MYSQL_PASSWORD\"&& mysqladmin -u $MYSQL_USER ping
mysqld is alive
The text was updated successfully, but these errors were encountered:
The following Maria DB Templates have an incorrectly configured liveness/readiness probe:
When the probes are executed the following warning is logged in the pod:
The probe should be two commands seperated by
;
or&&
:Executing the command manually generates the following for the current probe:
With the correction:
The text was updated successfully, but these errors were encountered: