[ja] use $HOSTNAME env variable instead of hostname command

pull/37917/head
Arhell 2022-11-16 01:56:56 +02:00
parent e2a139c1fa
commit 914f9aeabf
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ spec:
- |
set -ex
# Generate mysql server-id from pod ordinal index.
[[ `hostname` =~ -([0-9]+)$ ]] || exit 1
[[ $HOSTNAME =~ -([0-9]+)$ ]] || exit 1
ordinal=${BASH_REMATCH[1]}
echo [mysqld] > /mnt/conf.d/server-id.cnf
# Add an offset to avoid reserved server-id=0 value.