24 lines
888 B
Bash
24 lines
888 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Usage: run.sh <JWT> <yaml-basename without .yaml>
|
||
|
|
# Runs on docker02; substitutes JWT into the YAML, copies into the ingestion
|
||
|
|
# container, and executes the metadata ingestion workflow.
|
||
|
|
set -uo pipefail
|
||
|
|
JWT="$1"
|
||
|
|
NAME="$2"
|
||
|
|
CMD="${3:-ingest}"
|
||
|
|
DIR=/opt/openmetadata/ingest
|
||
|
|
# Use the stored stable token if no/placeholder JWT is passed (avoids rotating
|
||
|
|
# the bot token, which would invalidate the Command Center's stored token).
|
||
|
|
if [ -z "$JWT" ] || [ "$JWT" = "-" ]; then
|
||
|
|
JWT="$(cat "$DIR/.token" 2>/dev/null)"
|
||
|
|
fi
|
||
|
|
SRC="$DIR/${NAME}.yaml"
|
||
|
|
OUT="$DIR/.${NAME}.run.yaml"
|
||
|
|
|
||
|
|
if [ ! -f "$SRC" ]; then echo "MISSING $SRC"; exit 2; fi
|
||
|
|
sed "s|__JWT__|${JWT}|g" "$SRC" > "$OUT"
|
||
|
|
docker cp "$OUT" openmetadata_ingestion:/tmp/${NAME}.yaml >/dev/null
|
||
|
|
echo "=== metadata ${CMD}: ${NAME} ==="
|
||
|
|
docker exec openmetadata_ingestion metadata ${CMD} -c /tmp/${NAME}.yaml 2>&1 | tail -45
|
||
|
|
rm -f "$OUT"
|