-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enabled the property-based scheduling experience
- Loading branch information
1 parent
e18a9e0
commit ab8883d
Showing
14 changed files
with
1,022 additions
and
40 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 |
---|---|---|
|
@@ -116,3 +116,36 @@ jobs: | |
env: | ||
KUBECONFIG: '/home/runner/.kube/config' | ||
HUB_SERVER_URL: 'https://172.19.0.2:6443' | ||
|
||
e2e-tests-with-aks-property-provider: | ||
runs-on: ubuntu-latest | ||
needs: [ | ||
detect-noop, | ||
] | ||
if: needs.detect-noop.outputs.noop != 'true' | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Ginkgo CLI | ||
run: | | ||
go install github.com/onsi/ginkgo/v2/[email protected] | ||
- name: Install Kind | ||
# Before updating the kind version to use, verify that the current kind image | ||
# is still supported by the version. | ||
run: | | ||
go install sigs.k8s.io/[email protected] | ||
- name: Run e2e tests | ||
run: | | ||
make e2e-tests | ||
env: | ||
KUBECONFIG: '/home/runner/.kube/config' | ||
HUB_SERVER_URL: 'https://172.19.0.2:6443' | ||
PROPERTY_PROVIDER: 'aks' |
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Important: due to kind limitations | ||
# (kind node always has resource capacity == host resource capacity) and the way our planned test | ||
# cases (resource and non-resource properties) are designed, modification of this setup might lead | ||
# to test failures. | ||
kind: Cluster | ||
apiVersion: kind.x-k8s.io/v1alpha4 | ||
nodes: | ||
- role: control-plane | ||
- role: worker |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Important: due to kind limitations | ||
# (kind node always has resource capacity == host resource capacity) and the way our planned test | ||
# cases (resource and non-resource properties) are designed, modification of this setup might lead | ||
# to test failures. | ||
kind: Cluster | ||
apiVersion: kind.x-k8s.io/v1alpha4 | ||
nodes: | ||
- role: control-plane | ||
- role: worker | ||
- role: worker |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Important: due to kind limitations | ||
# (kind node always has resource capacity == host resource capacity) and the way our planned test | ||
# cases (resource and non-resource properties) are designed, modification of this setup might lead | ||
# to test failures. | ||
kind: Cluster | ||
apiVersion: kind.x-k8s.io/v1alpha4 | ||
nodes: | ||
- role: control-plane | ||
- role: worker | ||
- role: worker | ||
- role: worker |
Oops, something went wrong.