Add kolla-kubernetes bootstrap capability to mariadb
Kolla-kubernetes requires there be an alternative way to bootstrap the container. Kolla-kubernetes uses the Kubernetes API endpoint to read information about the cluster so that the bootstrap process runs serially. Partially-implements: blueprint kolla-kubernetes-extended-dockerfiles Change-Id: I6185f2522b1151c934871a1ad2387f0001c0a320 Co-authored-by: Ken Wronkiewicz <wh-openstack@wirewd.com>
This commit is contained in:
parent
9f8347a87a
commit
994d1e50a5
@ -18,6 +18,17 @@ function bootstrap_db {
|
||||
mysqladmin -uroot -p"${DB_ROOT_PASSWORD}" shutdown
|
||||
}
|
||||
|
||||
function kolla_kubernetes {
|
||||
KUBE_TOKEN=$(</var/run/secrets/kubernetes.io/serviceaccount/token)
|
||||
bootstrap_url=$(curl -sSk -H "Authorization: Bearer $KUBE_TOKEN" https://$KUBERNETES_SERVICE_HOST:$KUBERNETES_PORT_443_TCPORT/api/v1/namespaces/default/pods | grep /api/v1/namespaces/default/pods/mariadb-bootstrap | cut -d '"' -f 4) || true
|
||||
MARIADB_BOOTSTRAPPED=$(curl -sSk -H "Authorization: Bearer $KUBE_TOKEN" https://$KUBERNETES_SERVICE_HOST:$KUBERNETES_PORT_443_TCPORT$bootstrap_url | python -c 'import json,sys;obj=json.load(sys.stdin);print obj["status"]["phase"]') || MARIADB_BOOTSTRAPPED='Succeeded'
|
||||
|
||||
if [[ "$MARIADB_BOOTSTRAPPED" != "Succeeded" ]]; then
|
||||
echo "Mariadb bootstrapping isn't complete"
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
# Only update permissions if permissions need to be updated
|
||||
if [[ $(stat -c %U:%G /var/lib/mysql) != "mysql:mysql" ]]; then
|
||||
sudo chown mysql: /var/lib/mysql
|
||||
@ -41,3 +52,10 @@ fi
|
||||
if [[ "${!BOOTSTRAP_ARGS[@]}" ]]; then
|
||||
ARGS="${BOOTSTRAP_ARGS}"
|
||||
fi
|
||||
|
||||
#***** KOLLA-KUBERNETES *****
|
||||
# TODO: Add a kolla_kubernetes script at build time when templating is complete
|
||||
if [[ "${!KOLLA_KUBERNETES[@]}" ]]; then
|
||||
kolla_kubernetes
|
||||
fi
|
||||
#***** KOLLA-KUBERNETES *****
|
||||
|
Loading…
Reference in New Issue
Block a user