Files
k3s/.gitea/workflows/kubeconform.yml
aggarwalakshun bb6b1680ec
Some checks failed
Validate Kubernetes Manifests / kubeconform (pull_request) Failing after 33s
exclude .yaml files
2025-12-03 13:01:24 +05:30

32 lines
1.4 KiB
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 findutils
- name: Checkout code
run: |
git clone https://gitea.akshun-lab.cc/aggarwalakshun/k3s.git /mnt
- name: Validate Manifests
run: |
find /mnt -type f \( -name "*.yml" \) \
-not -path "*/.gitea/*" \
-print0 | xargs -0 --no-run-if-empty kubeconform \
-verbose \
-summary \
-schema-location default \
-schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/bitnami.com/sealedsecret_v1alpha1.json' \
-schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/helm.toolkit.fluxcd.io/helmrelease_v2.json' \
-schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/metallb.io/ipaddresspool_v1beta1.json' \
-schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/metallb.io/l2advertisement_v1beta1.json' \
-schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/source.toolkit.fluxcd.io/helmrepository_v1.json'