chore(deps): update k8s.io/utils digest to cf1189d #701
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: smoke | |
| on: | |
| schedule: | |
| - cron: "29 8 * * *" | |
| workflow_dispatch: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - labeled | |
| permissions: | |
| contents: read | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| smoke: | |
| if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'smoke') | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 90 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| mode: | |
| - ext-authz | |
| - ext-proc | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Set up Go | |
| uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 | |
| with: | |
| go-version-file: go.mod | |
| - name: Install smoke tooling | |
| run: | | |
| set -euo pipefail | |
| sudo apt-get update | |
| sudo apt-get install -y ca-certificates curl iproute2 make openssl tar | |
| mkdir -p "${RUNNER_TEMP}/bin" | |
| echo "${RUNNER_TEMP}/bin" >> "${GITHUB_PATH}" | |
| curl -fsSL -o "${RUNNER_TEMP}/bin/kind" "https://kind.sigs.k8s.io/dl/v0.29.0/kind-linux-amd64" | |
| chmod +x "${RUNNER_TEMP}/bin/kind" | |
| curl -fsSL -o "${RUNNER_TEMP}/bin/kubectl" "https://dl.k8s.io/release/v1.33.2/bin/linux/amd64/kubectl" | |
| chmod +x "${RUNNER_TEMP}/bin/kubectl" | |
| curl -fsSL "https://get.helm.sh/helm-v3.18.3-linux-amd64.tar.gz" | tar -xz -C "${RUNNER_TEMP}" | |
| mv "${RUNNER_TEMP}/linux-amd64/helm" "${RUNNER_TEMP}/bin/helm" | |
| curl -fsSL -o "${RUNNER_TEMP}/bin/yq" "https://github.com/mikefarah/yq/releases/download/v4.45.4/yq_linux_amd64" | |
| chmod +x "${RUNNER_TEMP}/bin/yq" | |
| curl -fsSL -o "${RUNNER_TEMP}/bin/devspace" "https://github.com/loft-sh/devspace/releases/download/v6.3.15/devspace-linux-amd64" | |
| chmod +x "${RUNNER_TEMP}/bin/devspace" | |
| - name: Run smoke (${{ matrix.mode }}) | |
| env: | |
| SMOKE_MODE: ${{ matrix.mode }} | |
| SMOKE_CLUSTER_NAME: ext-authz-token-exchange-smoke-${{ matrix.mode }} | |
| run: go run ./test/e2e/cmd/smoke |