Skip to content

Commit

Permalink
chore(ci): run intergration against GKE regular and stable k8s versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nettoclaudio committed May 22, 2023
1 parent 859bea4 commit 240a93f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,18 @@ jobs:

integration:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
k8s_version:
- 1.24.11 # current version at GKE stable channel (https://cloud.google.com/kubernetes-engine/docs/release-notes#current_versions)
- 1.25.8 # current version at GKE regular channel (https://cloud.google.com/kubernetes-engine/docs/release-notes#current_versions)
steps:
- uses: actions/checkout@master
- uses: engineerd/setup-kind@v0.5.0
with:
version: "v0.11.1"
image: 'kindest/node:v1.21.2'
image: kindest/node:v${{ matrix.k8s_version }}
- uses: azure/setup-helm@v1
with:
version: v3.7.0
Expand Down
4 changes: 2 additions & 2 deletions scripts/localkube-integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ readonly CLUSTER_PROVIDER=${CLUSTER_PROVIDER:-kind}
readonly NAMESPACE=${NAMESPACE:-rpaasv2-system}

readonly INSTALL_CERT_MANAGER=${INSTALL_CERT_MANAGER:-}
readonly CHART_VERSION_CERT_MANAGER=${CHART_VERSION_CERT_MANAGER:-1.5.3}
readonly CHART_VERSION_RPAAS_OPERATOR=${CHART_VERSION_RPAAS_OPERATOR:-0.6.9}
readonly CHART_VERSION_CERT_MANAGER=${CHART_VERSION_CERT_MANAGER:-1.11.2}
readonly CHART_VERSION_RPAAS_OPERATOR=${CHART_VERSION_RPAAS_OPERATOR:-0.10.1}

function onerror() {
echo
Expand Down

0 comments on commit 240a93f

Please sign in to comment.