Files
k3s/.gitea/workflows/kubeconform.yml
aggarwalakshun fec651cc0a
Some checks failed
Validate Kubernetes Manifests / kubeconform (pull_request) Failing after 32s
update kubeconform workflow to use Arch Linux container and install kubeconform
2025-12-03 12:11:35 +05:30

22 lines
558 B
YAML

name: Validate Kubernetes Manifests
on:
pull_request:
branches: [ main]
jobs:
kubeconform:
runs-on: ubuntu-latest
container:
image: docker.io/archlinux/archlinux:latest
steps:
- name: Setup environment
run: |
pacman -Syu --noconfirm kubeconform git
- name: Checkout code
run: |
git clone https://gitea.akshun-lab.cc/aggarwalakshun/k3s.git /mnt
- name: Validate Manifests
run: |
kubeconform -verbose -summary -schema-location default -kinds '*' /mnt/**/*.yml