diff --git a/.github/actions/provision-cluster/README.md b/.github/actions/provision-cluster/README.md index 45e5f227..5d20cba4 100644 --- a/.github/actions/provision-cluster/README.md +++ b/.github/actions/provision-cluster/README.md @@ -3,20 +3,20 @@ ## Example Usage ```yaml -- uses: datawire/infra-actions/provision-cluster@v0.3.1 +- uses: datawire/infra-actions/provision-cluster@v0.4.0 with: distribution: Kubeception - version: 1.29 + version: 1.31 kubeconfig: kubeconfig.yaml kubeceptionToken: ${{ secrets.KUBECEPTION_TOKEN }} ``` ```yaml -- uses: datawire/infra-actions/provision-cluster@v0.3.1 +- uses: datawire/infra-actions/provision-cluster@v0.4.0 with: distribution: GKE - version: 1.29 + version: 1.31 kubeconfig: kubeconfig.yaml gkeCredentials: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} diff --git a/.github/workflows/matrix.yaml b/.github/workflows/matrix.yaml index b5015890..4d8dbba2 100644 --- a/.github/workflows/matrix.yaml +++ b/.github/workflows/matrix.yaml @@ -26,11 +26,11 @@ jobs: client_os: [ubuntu] client_arch: [latest] clusters: - - version: "1.29" + - version: "1.31" useAuthProvider: "true" - - version: "1.29" + - version: "1.31" useAuthProvider: "false" - - version: "1.29" + - version: "1.31" config: '{ "initialNodeCount" : 2 }' runs-on: ${{ matrix.client_os }}-${{ matrix.client_arch }} env: @@ -67,7 +67,7 @@ jobs: client_os: [ubuntu] client_arch: [latest] clusters: - - version: "1.29" + - version: "1.31" runs-on: ${{ matrix.client_os }}-${{ matrix.client_arch }} env: KUBECEPTION_TOKEN: ${{ secrets.KUBECEPTION_TOKEN }} diff --git a/.github/workflows/smoke.yaml b/.github/workflows/smoke.yaml index 11ba7392..a37bd062 100644 --- a/.github/workflows/smoke.yaml +++ b/.github/workflows/smoke.yaml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: clusters: - - version: "1.29" + - version: "1.31" runs-on: ubuntu-latest env: GKE_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} @@ -22,7 +22,7 @@ jobs: - name: Kubectl tool installer uses: Azure/setup-kubectl@v4 - id: provision - uses: datawire/infra-actions/provision-cluster@v0.3.1 + uses: datawire/infra-actions/provision-cluster@v0.4.0 with: distribution: GKE version: ${{ matrix.clusters.version }} @@ -40,7 +40,7 @@ jobs: fail-fast: false matrix: clusters: - - version: "1.29" + - version: "1.31" runs-on: ubuntu-latest env: KUBECEPTION_TOKEN: ${{ secrets.KUBECEPTION_TOKEN }} @@ -48,7 +48,7 @@ jobs: - name: Kubectl tool installer uses: Azure/setup-kubectl@v4 - id: provision - uses: datawire/infra-actions/provision-cluster@v0.3.1 + uses: datawire/infra-actions/provision-cluster@v0.4.0 with: distribution: Kubeception version: ${{ matrix.clusters.version }} diff --git a/docs/GITHUB_ACTIONS.md b/docs/GITHUB_ACTIONS.md index 08ace968..00becada 100644 --- a/docs/GITHUB_ACTIONS.md +++ b/docs/GITHUB_ACTIONS.md @@ -22,10 +22,11 @@ jobs: - version: "1.28" - version: "1.29" - version: "1.30" + - version: "1.31" steps: # The provision-cluster action will automatically register a cleanup hook to remove the # cluster it provisions when the job is done. - - uses: datawire/infra-actions/provision-cluster@v0.3.1 + - uses: datawire/infra-actions/provision-cluster@v0.4.0 with: distribution: GKE version: ${{ matrix.clusters.version }} @@ -41,10 +42,11 @@ jobs: - version: "1.28" - version: "1.29" - version: "1.30" + - version: "1.31" steps: # The provision-cluster action will automatically register a cleanup hook to remove the # cluster it provisions when the job is done. - - uses: datawire/infra-actions/provision-cluster@v0.3.1 + - uses: datawire/infra-actions/provision-cluster@v0.4.0 with: distribution: Kubeception version: ${{ matrix.clusters.version }}