- Notifications
You must be signed in to change notification settings - Fork 64
Adding GPUs to Kind cluster #494
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
Merged
metalcycling merged 11 commits into project-codeflare:main from metalcycling:resource-extension Jul 25, 2023
Merged
Changes from 10 commits
Commits
Show all changes
11 commits Select commit Hold shift + click to select a range
2db5f6b Triggering different build
metalcycling ca05cf1 Checking if nodes can be listed
metalcycling b83139e Trigger build
metalcycling 42048dc Resource patching. Extending resources of Kubernetes nodes to include…
metalcycling 5207432 Fixed command to describe nodes
metalcycling 6fb4e75 Kuttl tests for checking if GPUs we added correctly to the nodes
metalcycling aa9fbea Fixed namespace issue and node name issue.
metalcycling 17201fb Adding all tests again now that the resource extension passes
metalcycling db72f42 Changed where the extended resources are tested
metalcycling 2d8eb92 Added error checks for 'curl' calls. Rename variables to use lower case.
metalcycling 7de6aee Fixed 'if' equal operator
metalcycling File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 @@ | ||
| --- | ||
| # Verify that GPUs are a resource for the node | ||
| apiVersion: v1 | ||
| kind: Node | ||
| metadata: | ||
| name: test-worker | ||
| status: | ||
| allocatable: | ||
| nvidia.com/gpu: "8" | ||
| |
This file contains hidden or 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,5 @@ | ||
| # Verify that the namespace was created | ||
| apiVersion: v1 | ||
| kind: Namespace | ||
| metadata: | ||
| name: extended-resources |
This file contains hidden or 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,4 @@ | ||
| apiVersion: v1 | ||
| kind: Namespace | ||
| metadata: | ||
| name: extended-resources |
This file contains hidden or 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,8 @@ | ||
| apiVersion: batch/v1 | ||
| kind: Job | ||
| metadata: | ||
| name: gpu-job | ||
| namespace: extended-resources | ||
| status: | ||
| conditions: | ||
| - type: Complete |
This file contains hidden or 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,19 @@ | ||
| apiVersion: batch/v1 | ||
| kind: Job | ||
| metadata: | ||
| name: gpu-job | ||
| namespace: extended-resources | ||
| spec: | ||
| template: | ||
| spec: | ||
| restartPolicy: Never | ||
| containers: | ||
| - name: gpu-job | ||
| image: ubuntu:latest | ||
| command: [ "/bin/bash", "-c", "--" ] | ||
| args: [ "sleep 10;" ] | ||
| resources: | ||
| requests: | ||
| nvidia.com/gpu: 8 | ||
| limits: | ||
| nvidia.com/gpu: 8 |
This file contains hidden or 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,7 @@ | ||
| apiVersion: kuttl.dev/v1beta1 | ||
| kind: TestSuite | ||
| testDirs: | ||
| - test/e2e-kuttl-extended-resources/ | ||
| timeout: 60 | ||
| artifactsDir: _output/logs | ||
| commands: |
Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.