-
Notifications
You must be signed in to change notification settings - Fork 8
ci: enable nutanix self hosted e2e tests #987
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
Changes from all commits
cce9ed7
6c0c3e4
ef19cee
891c6a8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -98,16 +98,16 @@ jobs: | |
| - {"provider": "Docker", "kubernetesVersion": "v1.29.9"} | ||
| - {"provider": "Docker", "kubernetesVersion": "v1.30.6"} | ||
| - {"provider": "Docker", "kubernetesVersion": "v1.31.2"} | ||
| # Uncomment below once we have the ability to run e2e tests on other providers from GHA. | ||
| # - {"provider": "Nutanix", "kubernetesVersion": "v1.29.6"} | ||
| - {"provider": "Nutanix", "kubernetesVersion": "v1.30.5", "osImage": "nkp-rocky-9.4-release-1.30.5-20240930171619"} | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this should be the new 9.5 image |
||
| # - {"provider": "AWS", "kubernetesVersion": "v1.29.6"} | ||
| fail-fast: false | ||
| uses: ./.github/workflows/e2e.yml | ||
| with: | ||
| focus: Self-hosted | ||
| provider: ${{ matrix.config.provider }} | ||
| kubernetes-version: ${{ matrix.config.kubernetesVersion }} | ||
| runs-on: ${{ matrix.config.provider == 'Nutanix' && 'self-hosted-ncn-dind' || 'ubuntu-22.04' }} | ||
| runs-on: 'self-hosted-ncn-dind' | ||
| os-image: ${{ matrix.config.provider == 'Nutanix' && matrix.config.osImage || '' }} | ||
| secrets: inherit | ||
| permissions: | ||
| contents: read | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,9 +4,9 @@ | |
| managementClusterName: caren-e2e | ||
|
|
||
| images: | ||
| - name: ko.local/cluster-api-runtime-extensions-nutanix:${E2E_IMAGE_TAG} | ||
| - name: ${LOCAL_IMAGE_REGISTRY}/cluster-api-runtime-extensions-nutanix:${E2E_IMAGE_TAG} | ||
| loadBehavior: mustLoad | ||
| - name: ghcr.io/nutanix-cloud-native/cluster-api-runtime-extensions-helm-chart-bundle-initializer:${E2E_IMAGE_TAG} | ||
| - name: ${LOCAL_IMAGE_REGISTRY}/cluster-api-runtime-extensions-helm-chart-bundle-initializer:${E2E_IMAGE_TAG} | ||
| loadBehavior: mustLoad | ||
|
|
||
| providers: | ||
|
|
@@ -211,7 +211,7 @@ variables: | |
| # DOCKER_HUB_PASSWORD: "" | ||
|
|
||
| intervals: | ||
| default/wait-controllers: ["3m", "10s"] | ||
| default/wait-controllers: ["10m", "10s"] | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the helm-repository containers creates PV to store the charts. The PV creation is slow on the nutanix workload cluster. this creates flakes in tests. Increasing timeout to ensure hem-repository comes up. |
||
| default/wait-cluster: ["10m", "10s"] | ||
| default/wait-control-plane: ["10m", "10s"] | ||
| default/wait-worker-nodes: ["10m", "10s"] | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.