From dfb3b13317ede37fe58f4cb0e272eaa7ce08baf9 Mon Sep 17 00:00:00 2001 From: aggarwalakshun Date: Fri, 12 Dec 2025 16:25:41 +0530 Subject: [PATCH] remove not needed code --- .gitea/workflows/kubeconform.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.gitea/workflows/kubeconform.yml b/.gitea/workflows/kubeconform.yml index 5f9c06f..7a421db 100644 --- a/.gitea/workflows/kubeconform.yml +++ b/.gitea/workflows/kubeconform.yml @@ -38,14 +38,6 @@ jobs: **.yml !.gitea/workflows/** - - name: Create kubeconform configuration - run: | - cat > /tmp/kubeconform-config.yaml << 'EOF' - schema_location: - - default - - "https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/{{ .ResourceKind }}_{{ .ResourceAPIVersion }}.json" - EOF - - name: Validate Manifests if: steps.changed-files.outputs.any_changed == 'true' env: @@ -77,7 +69,6 @@ jobs: SCHEMA_URL="https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/${SCHEMA_MAP[$KIND]}" if ! /kubeconform \ - -config /tmp/kubeconform-config.yaml \ -schema-location "$SCHEMA_URL" \ -cache "$KUBECONFORM_CACHE_DIR" \ -output json \ @@ -87,7 +78,6 @@ jobs: else echo "Validating with default schemas" if ! /kubeconform \ - -config /tmp/kubeconform-config.yaml \ -schema-location default \ -cache "$KUBECONFORM_CACHE_DIR" \ -output json \