Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add 'is kots working' checks to postrelease kurl testing #4139

Merged
merged 2 commits into from
Nov 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 55 additions & 9 deletions deploy/kurl/kotsadm/template/testgrid/k8s-docker.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
- name: "minimal rook"
installerSpec:
kubernetes:
version: "1.26.x"
version: "1.28.x"
containerd:
version: "latest"
flannel:
version: "latest"
rook:
version: 1.11.x
version: 1.12.x
kotsadm:
version: "__testver__"
s3Override: "__testdist__"
postInstallScript: |
# source helper functions
source /opt/kurl-testgrid/testhelpers.sh
# deploy sample app
install_and_customize_kurl_integration_test_application

- name: "minimal disableS3"
installerSpec:
kubernetes:
version: "1.26.x"
version: "1.28.x"
containerd:
version: "latest"
flannel:
Expand All @@ -29,10 +35,16 @@
version: "__testver__"
s3Override: "__testdist__"
disableS3: true
postInstallScript: |
# source helper functions
source /opt/kurl-testgrid/testhelpers.sh
# deploy sample app
install_and_customize_kurl_integration_test_application

- name: "all optional addons openebs"
installerSpec:
kubernetes:
version: "1.26.x"
version: "1.28.x"
containerd:
version: "latest"
flannel:
Expand All @@ -50,10 +62,16 @@
kotsadm:
version: "__testver__"
s3Override: "__testdist__"
postInstallScript: |
# source helper functions
source /opt/kurl-testgrid/testhelpers.sh
# deploy sample app
install_and_customize_kurl_integration_test_application

- name: "upgrade from 1.49"
installerSpec:
kubernetes:
version: "1.26.x"
version: "1.28.x"
containerd:
version: "latest"
flannel:
Expand All @@ -72,7 +90,7 @@
version: 1.49.0
upgradeSpec:
kubernetes:
version: "1.26.x"
version: "1.28.x"
containerd:
version: "latest"
flannel:
Expand All @@ -90,6 +108,17 @@
kotsadm:
version: "__testver__"
s3Override: "__testdist__"
postInstallScript: |
# source helper functions
source /opt/kurl-testgrid/testhelpers.sh
# deploy sample app
install_and_customize_kurl_integration_test_application
postUpgradeScript: |
# source helper functions
source /opt/kurl-testgrid/testhelpers.sh
# ensure we can redeploy sample app
check_and_customize_kurl_integration_test_application

- name: "upgrade from 1.49 into disableS3"
installerSpec:
kubernetes:
Expand Down Expand Up @@ -125,25 +154,37 @@
version: "__testver__"
s3Override: "__testdist__"
disableS3: true
postUpgradeScript: |
# source helper functions
source /opt/kurl-testgrid/testhelpers.sh
# ensure we can redeploy sample app
install_and_customize_kurl_integration_test_application
- name: "minimal rook airgap"
airgap: true
installerSpec:
kubernetes:
version: "1.26.x"
version: "1.28.x"
containerd:
version: "latest"
flannel:
version: "latest"
rook:
version: 1.11.x
version: 1.12.x
registry:
version: "latest"
kotsadm:
version: "__testver__"
s3Override: "__testdist__"
postInstallScript: |
# source helper functions
source /opt/kurl-testgrid/testhelpers.sh
# deploy sample app
install_and_customize_kurl_integration_test_application
- name: "minimal disableS3 airgap"
airgap: true
installerSpec:
kubernetes:
version: "1.26.x"
version: "1.28.x"
containerd:
version: "latest"
flannel:
Expand All @@ -158,3 +199,8 @@
version: "__testver__"
s3Override: "__testdist__"
disableS3: true
postInstallScript: |
# source helper functions
source /opt/kurl-testgrid/testhelpers.sh
# deploy sample app
install_and_customize_kurl_integration_test_application
Loading