#!/usr/bin/env bash # docker-dev cluster-seed entrypoint. Waits for the OtOpcUa ConfigDb schema to # be in place, then applies the idempotent row seed. # # IMPORTANT: this container does NOT run EF migrations — sqlcmd can't execute # the V2 migration script cleanly because it contains CREATE PROCEDURE # statements inside IF NOT EXISTS BEGIN ... END blocks (procs must be the # first statement in their batch). Migrations are owned by the operator: # # dotnet ef database update \ # --project src/Core/ZB.MOM.WW.OtOpcUa.Configuration \ # --startup-project src/Server/ZB.MOM.WW.OtOpcUa.Host # # (with ConnectionStrings__ConfigDb pointing at Server=localhost,14330;...). # Once the schema is in place, restart the cluster-seed container — or just # `docker compose up -d` and the seed will pick up where it left off thanks to # the IF NOT EXISTS guards in seed-clusters.sql. set -euo pipefail SQLCMD="/opt/mssql-tools/bin/sqlcmd" SERVER="${SQL_HOST:-sql},1433" USER="${SQL_USER:-sa}" PASS="${SQL_PASSWORD:-OtOpcUa!Dev123}" DB="${SQL_DATABASE:-OtOpcUa}" run_sql_in() { local target_db="$1"; shift # -I forces SET QUOTED_IDENTIFIER ON (needed for filtered indexes if you # ever extend this script to touch them). "$SQLCMD" -S "$SERVER" -U "$USER" -P "$PASS" -d "$target_db" -b -h -1 -I "$@" } echo "[cluster-seed] waiting for SQL Server to accept connections..." until run_sql_in master -Q "SELECT 1" >/dev/null 2>&1; do sleep 2 done echo "[cluster-seed] SQL Server up." echo "[cluster-seed] waiting for ${DB} database + dbo.ServerCluster table (operator must run dotnet ef database update)..." until run_sql_in "$DB" -Q "IF OBJECT_ID('dbo.ServerCluster') IS NULL THROW 50001, 'missing', 1; SELECT 1" >/dev/null 2>&1; do sleep 3 done echo "[cluster-seed] schema ready." echo "[cluster-seed] applying seed-clusters.sql (ServerCluster + ClusterNode rows)..." run_sql_in "$DB" -i /seed/seed-clusters.sql echo "[cluster-seed] done."