* chore(docker-compose): keep the original directory Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * chore(docker-compose): keep user editer common.env backup Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * chore(docker-compose): adding uxtesting missing feat Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * refactor(docker-compose): Adding new services Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * refactor(docker-compose): don't reset the file while running Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * chore(docker-compose): keep db versions unless its overridden explicit Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * docker-compose: proper container names Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * docker-compose: fix profiles Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * docker-compose: upgrade script * docker-compose: script for migration Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * refactor(docker-compose): spacing for code Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * fix(docker-compose): replace values Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * refactor(docker-compose): Adding db versions section Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * chore(docker-compose): pg migration Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> --------- Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
113 lines
3.5 KiB
Bash
113 lines
3.5 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Path to the original and new env files
|
|
original_env_file="$1"
|
|
|
|
# Check if the original env file exists and is not empty
|
|
if [ ! -s "$original_env_file" ]; then
|
|
echo "Error: The original env file is empty or does not exist."
|
|
echo "Usage: $0 /path/to/original.env"
|
|
exit 1
|
|
fi
|
|
|
|
new_env_file="./common.env"
|
|
temp_env_file=$(mktemp)
|
|
|
|
# Function to merge environment variables from original to new env file
|
|
function merge_envs() {
|
|
while IFS='=' read -r key value; do
|
|
# Skip the line if the key is COMMON_VERSION
|
|
case "$key" in
|
|
COMMON_VERSION)
|
|
original_version=$(echo "$value" | xargs)
|
|
continue
|
|
;;
|
|
COMMON_PG_PASSWORD)
|
|
pgpassword=$value
|
|
;;
|
|
POSTGRES_VERSION | REDIS_VERSION | MINIO_VERSION)
|
|
# Don't update db versions automatically.
|
|
continue
|
|
;;
|
|
esac
|
|
|
|
# Remove any existing entry from the new env file and add the new value
|
|
grep -v "^$key=" "$new_env_file" >"$temp_env_file"
|
|
mv "$temp_env_file" "$new_env_file"
|
|
echo "$key=$value" >>"$new_env_file"
|
|
done <"$original_env_file"
|
|
}
|
|
|
|
# Function to normalize version numbers for comparison
|
|
function normalise_version {
|
|
echo "$1" | awk -F. '{ printf("%03d%03d%03d\n", $1, $2, $3); }'
|
|
}
|
|
|
|
# Function to log messages
|
|
function log_message() {
|
|
echo "$@" >&2
|
|
}
|
|
|
|
# Function to create migration versions based on the current and previous application versions
|
|
function create_migration_versions() {
|
|
cd "${SCHEMA_DIR:-/opt/openreplay/openreplay/scripts/schema}" || {
|
|
log_message "not able to cd $SCHEMA_DIR"
|
|
exit 100
|
|
}
|
|
|
|
db=postgresql
|
|
# List all version directories excluding 'create' directory
|
|
all_versions=($(find db/init_dbs/$db -maxdepth 1 -type d -exec basename {} \; | grep -v create))
|
|
|
|
# Normalize the previous application version for comparison
|
|
PREVIOUS_APP_VERSION_NORMALIZED=$(normalise_version "${PREVIOUS_APP_VERSION}")
|
|
|
|
migration_versions=()
|
|
for ver in "${all_versions[@]}"; do
|
|
if [[ $(normalise_version "$ver") > "$PREVIOUS_APP_VERSION_NORMALIZED" ]]; then
|
|
migration_versions+=("$ver")
|
|
fi
|
|
done
|
|
|
|
# Join migration versions into a single string separated by commas
|
|
joined_migration_versions=$(
|
|
IFS=,
|
|
echo "${migration_versions[*]}"
|
|
)
|
|
|
|
# Return to the previous directory
|
|
cd - >/dev/null || {
|
|
log_message "not able to cd back"
|
|
exit 100
|
|
}
|
|
|
|
log_message "output: $joined_migration_versions"
|
|
echo "$joined_migration_versions"
|
|
}
|
|
|
|
# Function to perform migration
|
|
function migrate() {
|
|
# Set schema directory and previous application version
|
|
export SCHEMA_DIR="../schema/"
|
|
export PREVIOUS_APP_VERSION=${original_version#v}
|
|
|
|
# Create migration versions array
|
|
IFS=',' read -ra joined_migration_versions <<<"$(create_migration_versions)"
|
|
# Check if there are versions to migrate
|
|
[[ ${#joined_migration_versions[@]} -eq 0 ]] && {
|
|
echo "Nothing to migrate"
|
|
return
|
|
}
|
|
# Loop through versions and prepare Docker run commands
|
|
for ver in "${joined_migration_versions[@]}"; do
|
|
echo "$ver"
|
|
"docker run --rm --network openreplay-net \
|
|
--name pgmigrate -e 'PGHOST=postgres' -e 'PGPORT=5432' \
|
|
-e 'PGDATABASE=postgres' -e 'PGUSER=postgres' -e 'PGPASSWORD=$pgpassword' \
|
|
-v /opt/data/:$SCHEMA_DIR postgres psql -f /opt/data/schema/db/init_dbs/postgresql/$ver/$ver.sql"
|
|
done
|
|
}
|
|
|
|
# Merge environment variables and perform migration
|
|
merge_envs
|
|
migrate
|