Files
k/.gitea/workflows/validate.yaml
Timo Behrendt d360b8c970
All checks were successful
Deploy / check-changes (push) Successful in 5s
Deploy / deploy-node-labels (push) Has been skipped
Deploy / deploy-coredns (push) Successful in 21s
Validate / validate-coredns (push) Successful in 7s
Validate / validate-node-lables (push) Successful in 20s
feat: add coredns (#6)
We had some inconsistencies with node configuration and dns hickups.
This feature moves the coredns config into our software versioning system.

Reviewed-on: #6
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2025-10-05 20:52:18 +02:00

34 lines
811 B
YAML

name: Validate
on:
push:
branches-ignore:
- main
jobs:
validate-node-lables:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: azure/setup-kubectl@v4
- uses: azure/k8s-set-context@v4
with:
method: kubeconfig
kubeconfig: ${{ secrets.KUBECONFIG }}
- name: Validate
run: |
kubectl apply --server-side --field-manager=t000-n --dry-run=server -f node-labels
validate-coredns:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: azure/setup-kubectl@v4
- uses: azure/k8s-set-context@v4
with:
method: kubeconfig
kubeconfig: ${{ secrets.KUBECONFIG }}
- name: Validate
run: |
kubectl apply -n kube-system -f coredns