OCPBUGS-82166: fix etcd snapshot restore for etcd 3.6 and enforce res… #1
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: Envtest Vanilla Kube API Validation | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'api/**' | |
| - 'test/envtest/**' | |
| - 'cmd/install/assets/crds/hypershift-operator/tests/**' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'api/**' | |
| - 'test/envtest/**' | |
| - 'cmd/install/assets/crds/hypershift-operator/tests/**' | |
| workflow_dispatch: {} | |
| jobs: | |
| envtest-kube: | |
| name: Envtest Vanilla Kube ${{ matrix.version }} | |
| runs-on: arc-runner-set | |
| timeout-minutes: 15 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: ["1.31.0", "1.32.0", "1.33.0", "1.34.0", "1.35.0"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: make test-envtest-kube ENVTEST_KUBE_VERSIONS="${{ matrix.version }}" |