Files
infrastructure/.gitea/workflows/apply-kubernetes.yml
Alex Mickelson 040a7e50ce
Some checks failed
Apply Kuberentes Configs / update-repo (push) Failing after 2s
Apply Kuberentes Configs / update-infrastructure (push) Failing after 2s
runs-on
2026-02-07 15:12:47 -07:00

19 lines
577 B
YAML

name: Apply Kuberentes Configs
on: [push, workflow_dispatch]
runs-on: home-server
jobs:
update-repo:
uses: ./.gitea/workflows/update-repo.yml
update-infrastructure:
needs: update-repo-folder
steps:
- name: update home server containers
env:
KUBECONFIG: /home/gitea-runner/.kube/config
working-directory: /home/gitea-runner/infrastructure
run: |
kubectl apply -f kubernetes/proxy-ingress
kubectl annotate ingressclass nginx \
ingressclass.kubernetes.io/is-default-class="true" --overwrite