Compare commits

..

5 Commits

Author SHA1 Message Date
4c91ab980b massively improve validation speed
Reviewed-on: #170
2025-12-03 14:53:54 +00:00
882d9f78fb use absolute path for kubeconform
All checks were successful
Validate Kubernetes Manifests / kubeconform (pull_request) Successful in 27s
2025-12-03 20:22:07 +05:30
47ddd8e4b4 add bash as dep
Some checks failed
Validate Kubernetes Manifests / kubeconform (pull_request) Failing after 13s
2025-12-03 20:20:09 +05:30
df575e0fa2 add nodejs and npm deps
Some checks failed
Validate Kubernetes Manifests / kubeconform (pull_request) Failing after 12s
2025-12-03 20:15:46 +05:30
26d23292cf use ghcr.io/yannh/kubeconform:v0.7.0-alpine image
Some checks failed
Validate Kubernetes Manifests / kubeconform (pull_request) Failing after 31s
2025-12-03 20:13:49 +05:30

View File

@@ -8,14 +8,22 @@ jobs:
kubeconform: kubeconform:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: docker.io/archlinux/archlinux:latest image: ghcr.io/yannh/kubeconform:v0.7.0-alpine
steps: steps:
- name: Setup environment
- name: Install dependencies
run: | run: |
pacman -Syu --noconfirm kubeconform git yq nodejs npm apk add --no-cache \
yq \
findutils \
curl \
jq \
npm \
nodejs \
bash
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v6
with: with:
fetch-depth: 0 fetch-depth: 0
@@ -28,53 +36,60 @@ jobs:
EOF EOF
- name: Validate Manifests - name: Validate Manifests
shell: bash
run: | run: |
# Create a cache directory for schemas # Define schema mappings
mkdir -p /tmp/kubeconform-cache declare -A SCHEMA_MAP=(
["HelmRelease"]="helm.toolkit.fluxcd.io/helmrelease_v2.json"
["HelmRepository"]="source.toolkit.fluxcd.io/helmrepository_v1.json"
["L2Advertisement"]="metallb.io/l2advertisement_v1beta1.json"
["IPAddressPool"]="metallb.io/ipaddresspool_v1beta1.json"
["SealedSecret"]="bitnami.com/sealedsecret_v1alpha1.json"
)
# Validate manifests with proper schema resolution # Create cache directory
find . -type f \( -name "*.yml" \) \ export KUBECONFORM_CACHE_DIR="/tmp/kubeconform-cache"
-not -path "./.gitea/*" \ mkdir -p "$KUBECONFORM_CACHE_DIR"
-not -path "./clusters/default/system-upgrade/*" \
-exec sh -c ' # Exit code tracking
for file do EXIT_CODE=0
echo "=== Validating: $file ==="
if yq -e "select(.kind == \"HelmRelease\")" "$file" >/dev/null 2>&1; then # Process all YAML files
echo "Found HelmRelease - using fluxcd schema" while IFS= read -r file; do
kubeconform \ echo "=== Validating: $file ==="
-schema-location "https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/helm.toolkit.fluxcd.io/helmrelease_v2.json" \
-output json \ # Skip excluded paths
"$file" if [[ "$file" == *".gitea/"* ]] || [[ "$file" == *"clusters/default/system-upgrade/"* ]]; then
elif yq -e "select(.kind == \"HelmRepository\")" "$file" >/dev/null 2>&1; then echo "Skipping excluded file"
echo "Found HelmRepository - using fluxcd schema" continue
kubeconform \ fi
-schema-location "https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/source.toolkit.fluxcd.io/helmrepository_v1.json" \
-output json \ # Detect resource kind
"$file" KIND=$(yq -r '.kind // ""' "$file" 2>/dev/null || echo "")
elif yq -e "select(.kind == \"L2Advertisement\")" "$file" >/dev/null 2>&1; then
echo "Found L2Advertisement - using metallb schema" if [[ -n "$KIND" && -n "${SCHEMA_MAP[$KIND]}" ]]; then
kubeconform \ echo "Found $KIND - using custom schema"
-schema-location "https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/metallb.io/l2advertisement_v1beta1.json" \ SCHEMA_URL="https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/${SCHEMA_MAP[$KIND]}"
-output json \
"$file" if ! /kubeconform \
elif yq -e "select(.kind == \"IPAddressPool\")" "$file" >/dev/null 2>&1; then -schema-location "$SCHEMA_URL" \
echo "Found IPAddressPool - using metallb schema" -cache "$KUBECONFORM_CACHE_DIR" \
kubeconform \ -output json \
-schema-location "https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/metallb.io/ipaddresspool_v1beta1.json" \ "$file"; then
-output json \ EXIT_CODE=1
"$file" fi
elif yq -e "select(.kind == \"SealedSecret\")" "$file" >/dev/null 2>&1; then else
echo "Found SealedSecret - using bitnami schema" echo "Validating with default schemas"
kubeconform \ if ! /kubeconform \
-schema-location "https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/bitnami.com/sealedsecret_v1alpha1.json" \ -schema-location default \
-output json \ -cache "$KUBECONFORM_CACHE_DIR" \
"$file" -output json \
else "$file"; then
echo "Validating with default schemas" EXIT_CODE=1
kubeconform \ fi
-schema-location default \ fi
-output json \
"$file" echo ""
fi done < <(find . -type f \( -name "*.yml" \) -print)
done
' sh {} + exit $EXIT_CODE