Start roughing out K8s deployment spec for api-server; bootstrap global locks AFTER DB migrations have run

This commit is contained in:
2025-02-25 00:18:45 -05:00
parent 0ce3ba0512
commit ed7b167167
11 changed files with 119 additions and 15 deletions

View File

@@ -6,4 +6,4 @@ if ! [ -f Cargo.toml ]; then
fi
cargo build --release --target x86_64-unknown-linux-gnu
docker build -t "${DOCKER_REGISTRY}/p5x-rs:latest" .
docker build -t "${DOCKER_REGISTRY}/glmdev/p5x-api:latest" .

3
scripts/push.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/sh -e
docker push "${DOCKER_REGISTRY}/glmdev/p5x-api:latest"

View File

@@ -24,4 +24,4 @@ fi
echo ""
echo "Running p5x..."
echo ""
docker run $P5X_ARGS "$DOCKER_REGISTRY/p5x-rs:latest"
docker run $P5X_ARGS "$DOCKER_REGISTRY/glmdev/p5x-api:latest"