From 36300ab3e8668cdb8f68a22f6f5a49b8fa7f2ff8 Mon Sep 17 00:00:00 2001 From: Fernando Davis Date: Fri, 7 Aug 2026 14:46:41 -0400 Subject: [PATCH] comment k8s connection --- .github/workflows/deploy-applicationset.yaml | 42 ++++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/deploy-applicationset.yaml b/.github/workflows/deploy-applicationset.yaml index 2ba26ad..74dd2ed 100644 --- a/.github/workflows/deploy-applicationset.yaml +++ b/.github/workflows/deploy-applicationset.yaml @@ -319,38 +319,38 @@ jobs: chmod 600 ~/.kube/config - - name: Verify Kubernetes connection - run: | + # - name: Verify Kubernetes connection + # run: | - kubectl cluster-info + # kubectl cluster-info - echo - kubectl config current-context + # echo + # kubectl config current-context - - name: Verify ApplicationSet CRD - run: | - kubectl get crd applicationsets.argoproj.io + # - name: Verify ApplicationSet CRD + # run: | + # kubectl get crd applicationsets.argoproj.io - - name: Server-side ApplicationSet dry-run - shell: bash - run: | + # - name: Server-side ApplicationSet dry-run + # shell: bash + # run: | - while read -r file; do + # while read -r file; do - [ -z "$file" ] && continue + # [ -z "$file" ] && continue - echo - echo "==========================================" - echo "Server-side dry-run: $file" - echo "==========================================" + # echo + # echo "==========================================" + # echo "Server-side dry-run: $file" + # echo "==========================================" - kubectl apply \ - --dry-run=server \ - -f "$file" + # kubectl apply \ + # --dry-run=server \ + # -f "$file" - done < /tmp/appset-files.txt + # done < /tmp/appset-files.txt # =========================================================