minecraft
All checks were successful
Apply Kuberentes Configs / update-repo (push) Successful in 1s
Apply Kuberentes Configs / update-infrastructure (push) Successful in 3s
Apply Kuberentes Configs / notify-on-failure (push) Has been skipped

This commit is contained in:
2026-03-07 19:53:46 -07:00
parent d24a905516
commit 0ca2ab2401
3 changed files with 57 additions and 20 deletions

View File

@@ -0,0 +1,21 @@
name: Apply Kuberentes Configs
on: [workflow_dispatch]
jobs:
update-repo:
uses: ./.gitea/workflows/update-repo.yml
runs-on: home-server
update-infrastructure:
runs-on: home-server
needs: update-repo-folder
env:
KUBECONFIG: /home/gitea-runner/.kube/config
defaults:
run:
working-directory: /home/gitea-runner/infrastructure
steps:
- name: update home server containers
run: |
for file in kubernetes/minecraft/*.yml; do
cat "$file" | envsubst | kubectl apply -f -
done