Make the CouchDB image use the right directory on Kubernetes.

This commit is contained in:
Sam Rose 2023-11-22 10:35:53 +00:00
parent 4af7bf459a
commit 423fa68f34
No known key found for this signature in database
1 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,11 @@ if [[ "${TARGETBUILD}" = "aas" ]]; then
/etc/init.d/ssh restart
sed -i "s#DATA_DIR#/home#g" /opt/clouseau/clouseau.ini
sed -i "s#DATA_DIR#/home#g" /opt/couchdb/etc/local.ini
elif [[ -n $KUBERNETES_SERVICE_HOST ]]; then
# In Kubernetes the directory /opt/couchdb/data has a persistent volume
# mount for storing database data.
sed -i "s#DATA_DIR#/opt/couchdb/data#g" /opt/clouseau/clouseau.ini
sed -i "s#DATA_DIR#/opt/couchdb/data#g" /opt/couchdb/etc/local.ini
else
sed -i "s#DATA_DIR#/data#g" /opt/clouseau/clouseau.ini
sed -i "s#DATA_DIR#/data#g" /opt/couchdb/etc/local.ini