From 2c8b490aa68cfa50da7013187187dd5b8178b5bf Mon Sep 17 00:00:00 2001 From: Dan Pock Date: Wed, 23 Oct 2024 15:41:41 -0400 Subject: [PATCH] remove all usage of tmate steps --- .github/workflows/hpo-e2e-ci.yaml | 10 ---------- .github/workflows/prom-fed-e2e-ci.yaml | 11 ----------- scripts/e2e-ci | 1 - 3 files changed, 22 deletions(-) diff --git a/.github/workflows/hpo-e2e-ci.yaml b/.github/workflows/hpo-e2e-ci.yaml index 3e017fda..3dd81496 100644 --- a/.github/workflows/hpo-e2e-ci.yaml +++ b/.github/workflows/hpo-e2e-ci.yaml @@ -3,10 +3,6 @@ name: "[helm-project-operator] E2E Helm Project Operator" on: workflow_dispatch: inputs: - enable_tmate: - description: 'Enable debugging via tmate' - required: false - default: "false" debug: description: "Enable debug logs" required: false @@ -78,12 +74,6 @@ jobs: - name: Setup kubectl context run: | kubectl config use-context "k3d-$CLUSTER_NAME"; - - name: Set Up Tmate Debug Session - if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.enable_tmate == 'true' }} - uses: mxschmitt/action-tmate@v3 - timeout-minutes: 15 - with: - limit-access-to-actor: true - name: Install Helm Project Operator run: ./.github/workflows/e2e/scripts/hpo-install-helm-project-operator.sh; diff --git a/.github/workflows/prom-fed-e2e-ci.yaml b/.github/workflows/prom-fed-e2e-ci.yaml index 4e531bc4..03f59cec 100644 --- a/.github/workflows/prom-fed-e2e-ci.yaml +++ b/.github/workflows/prom-fed-e2e-ci.yaml @@ -3,10 +3,6 @@ name: "[prom-fed] E2E CI" on: workflow_dispatch: inputs: - enable_tmate: - description: 'Enable debugging via tmate' - required: false - default: "false" debug: description: "Enable debug logs" required: false @@ -118,13 +114,6 @@ jobs: name: Setup kubectl context run: | kubectl config use-context "k3d-$CLUSTER_NAME"; - - - name: Set Up Tmate Debug Session - if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.enable_tmate == 'true' }} - uses: mxschmitt/action-tmate@v3 - timeout-minutes: 15 - with: - limit-access-to-actor: true - name: Install Rancher Monitoring run: ./.github/workflows/e2e/scripts/install-monitoring.sh; diff --git a/scripts/e2e-ci b/scripts/e2e-ci index 5753a275..aadedb11 100755 --- a/scripts/e2e-ci +++ b/scripts/e2e-ci @@ -65,7 +65,6 @@ else "Provision k3d Cluster" "Import Images Into k3d" "Setup kubectl context" - "Set Up Tmate Debug Session" "Delete k3d cluster" "Generate artifacts on failure" "Upload logs and manifests on failure"