-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2696 from lizardruss/ENG-1890
fix: remove the use of the --short flag in kubectl version
- Loading branch information
Showing
577 changed files
with
230,524 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,18 +21,28 @@ env: | |
jobs: | ||
test-e2e: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
kubernetes_version: | ||
- v1.27.3 | ||
- v1.28.0 | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: kubectl install | ||
uses: azure/setup-kubectl@v3 | ||
with: | ||
version: ${{ matrix.kubernetes_version }} | ||
|
||
# Creates KinD with using k8s versions from the matrix above | ||
- name: Set up kind with K8s version v1.22.4 | ||
uses: engineerd/[email protected] | ||
with: | ||
version: "v0.11.1" | ||
image: kindest/node:v1.22.4 | ||
version: "v0.20.0" | ||
image: kindest/node:${{ matrix.kubernetes_version }} | ||
|
||
- name: Testing kind cluster set-up | ||
run: | | ||
kubectl cluster-info | ||
|
This file contains 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
Oops, something went wrong.