Skip to content

Commit

Permalink
Merge pull request #106 from datawire/rlane/update-versions
Browse files Browse the repository at this point in the history
Update tests/docs to latest release
  • Loading branch information
rick-a-lane-ii authored Oct 17, 2024
2 parents 45a6ec6 + b9568eb commit 7ec5db5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/actions/provision-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/smoke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
fail-fast: false
matrix:
clusters:
- version: "1.29"
- version: "1.31"
runs-on: ubuntu-latest
env:
GKE_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}
steps:
- 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 }}
Expand All @@ -40,15 +40,15 @@ jobs:
fail-fast: false
matrix:
clusters:
- version: "1.29"
- version: "1.31"
runs-on: ubuntu-latest
env:
KUBECEPTION_TOKEN: ${{ secrets.KUBECEPTION_TOKEN }}
steps:
- 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 }}
Expand Down
6 changes: 4 additions & 2 deletions docs/GITHUB_ACTIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit 7ec5db5

Please sign in to comment.