File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4343 image : manojmdocker14/microforge-notifications-mysql:v1.0.0
4444 ports :
4545 - containerPort : 3306
46+ startupProbe :
47+ exec :
48+ command :
49+ - bash
50+ - " -c"
51+ - " mysqladmin ping -u root -p$MYSQL_ROOT_PASSWORD"
52+ initialDelaySeconds : 15 # Wait 15s before starting the first check
53+ periodSeconds : 10 # Check every 10s
54+ failureThreshold : 30 # Allow 30 failures (Total 5 minutes of boot time)
55+ livenessProbe :
56+ exec :
57+ command :
58+ - bash
59+ - " -c"
60+ - " mysqladmin ping -u root -p$MYSQL_ROOT_PASSWORD"
61+ periodSeconds : 20
62+ timeoutSeconds : 5
63+ readinessProbe :
64+ exec :
65+ command :
66+ - bash
67+ - " -c"
68+ - " mysql -u root -p$MYSQL_ROOT_PASSWORD -e 'SELECT 1;'"
69+ initialDelaySeconds : 5
70+ periodSeconds : 10
71+ timeoutSeconds : 10
4672 envFrom :
4773 - configMapRef :
4874 name : notification-mysql-config
You can’t perform that action at this time.
0 commit comments