mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-04-06 19:16:50 +00:00
13 lines
236 B
Bash
13 lines
236 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# This is a simulation of a backup process.
|
|
|
|
EXIT_CODE=${BACKUP_EXIT:-0}
|
|
|
|
echo "Starting backup (estimated run time: 60s)"
|
|
podcli check http database-replica:3306/readyz
|
|
sleep 60
|
|
echo "Backup finished"
|
|
exit $EXIT_CODE
|