Skip to content

Commit

Permalink
adding database backup
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryce Coon committed Apr 16, 2024
1 parent 20a8c68 commit bb5368a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/brycerunner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,14 @@ jobs:
cd ..
# kubectl -n bryce2 create configmap blazor-web-postgres-init --from-file=TestTicket/20240215.01.21.01.sql
kubectl apply -f kube/
#kubectl apply -f kube/
RUN_ID=${{ github.run_id }}
for file in ./kube; do
echo "Applying $file"
cat $file | envsubst | kubectl apply -f -f -
done
# - name: "Integration Tests"
Expand Down
2 changes: 1 addition & 1 deletion kube/web-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: blazor-web
image: 144.17.92.12:5000/bryce2/blazor-web:1
image: 144.17.92.12:5000/bryce2/blazor-web:${RUN_ID}
ports:
- containerPort: 8080
env:
Expand Down

0 comments on commit bb5368a

Please sign in to comment.