Skip to content

Commit

Permalink
chore(version): add 2.11.0 to upgrade matrix (#109)
Browse files Browse the repository at this point in the history
- add 2.11.0 to upgrade matrix
- bump k8s version in github action workflows

Signed-off-by: shubham <[email protected]>
  • Loading branch information
shubham14bajpai authored Jul 2, 2021
1 parent c1d66dd commit 417f3b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
kubernetes: [v1.18.6]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -89,8 +87,8 @@ jobs:
- name: Setup Minikube-Kubernetes
uses: manusa/[email protected]
with:
minikube version: v1.9.2
kubernetes version: ${{ matrix.kubernetes }}
minikube version: v1.21.0
kubernetes version: v1.20.7
github token: ${{ secrets.GITHUB_TOKEN }}

- name: Set tag
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ jobs:
timeout-minutes: 50
strategy:
fail-fast: false
matrix:
kubernetes: [v1.18.6]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -91,8 +89,8 @@ jobs:
- name: Setup Minikube-Kubernetes
uses: manusa/[email protected]
with:
minikube version: v1.9.2
kubernetes version: ${{ matrix.kubernetes }}
minikube version: v1.21.0
kubernetes version: v1.20.7
github token: ${{ secrets.GITHUB_TOKEN }}

- name: Set tag
Expand Down
2 changes: 1 addition & 1 deletion version/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
var (
validCurrentVersions = map[string]bool{
"2.6.0": true, "2.7.0": true, "2.8.0": true, "2.9.0": true,
"2.10.0": true,
"2.10.0": true, "2.10.1": true, "2.11.0": true,
}
validDesiredVersion = strings.Split(Version, "-")[0]
)
Expand Down

0 comments on commit 417f3b8

Please sign in to comment.