-
Notifications
You must be signed in to change notification settings - Fork 1
Fix deployment on arm64 architecture #109
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
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
8d2d0e4
Fix deployment on arm64 architecture
abuccts 52b0d1f
Update
abuccts 3561b51
Use buildkit for Docker build
abuccts f6d4f5e
Upgrade NVIDIA k8s device plugin
abuccts 04f5c4d
Update according to comments
abuccts 3f9107b
Merge branch 'dev' into xiongyf/fix-deploy-arm
abuccts ac227c2
Update docker install
abuccts b7a8c53
Merge branch 'dev' into xiongyf/fix-deploy-arm
abuccts 5dd75b8
Add ghcr login
abuccts a93459b
Update
abuccts 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
6 changes: 6 additions & 0 deletions
6
src/device-plugin/build/k8s-host-device-plugin.k8s.dockerfile
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,6 @@ | ||
| # Copyright (c) Microsoft Corporation. | ||
| # Licensed under the MIT License. | ||
|
|
||
hippogr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| FROM everpeace/k8s-host-device-plugin | ||
|
|
||
| #TODO: add arm64 image | ||
4 changes: 4 additions & 0 deletions
4
src/device-plugin/build/k8s-nvidia-device-plugin.k8s.dockerfile
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 @@ | ||
| # Copyright (c) Microsoft Corporation. | ||
| # Licensed under the MIT License. | ||
|
|
||
| FROM nvcr.io/nvidia/k8s-device-plugin:v0.18.0 |
4 changes: 4 additions & 0 deletions
4
src/device-plugin/build/k8s-rdma-shared-dev-plugin.k8s.dockerfile
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 @@ | ||
| # Copyright (c) Microsoft Corporation. | ||
| # Licensed under the MIT License. | ||
|
|
||
| FROM ghcr.io/mellanox/k8s-rdma-shared-dev-plugin:1.4.0 |
6 changes: 6 additions & 0 deletions
6
src/device-plugin/build/k8s-rocm-device-plugin.k8s.dockerfile
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,6 @@ | ||
| # Copyright (c) Microsoft Corporation. | ||
| # Licensed under the MIT License. | ||
|
|
||
| FROM rocm/k8s-device-plugin | ||
|
|
||
| # no arm64 support |
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
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
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 was deleted.
Oops, something went wrong.
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,30 @@ | ||
| # Copyright (c) Microsoft Corporation. | ||
yukirora marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| # Licensed under the MIT License. | ||
|
|
||
| FROM golang:1.24.3-alpine3.21 AS builder | ||
|
|
||
| ARG TEST=false | ||
| ENV GOPATH=/go | ||
| ENV PROJECT_DIR=/src | ||
| ENV INSTALL_DIR=/opt/hivedscheduler/hivedscheduler | ||
|
|
||
| RUN apk update && apk add --no-cache bash | ||
| RUN mkdir -p ${PROJECT_DIR} ${INSTALL_DIR} | ||
| COPY src ${PROJECT_DIR} | ||
| RUN if [ ${TEST} == "true" ]; \ | ||
| then ${PROJECT_DIR}/build/hivedscheduler/go-build.sh test; \ | ||
| else ${PROJECT_DIR}/build/hivedscheduler/go-build.sh; fi && \ | ||
| mv ${PROJECT_DIR}/dist/hivedscheduler/* ${INSTALL_DIR} | ||
|
|
||
|
|
||
| FROM alpine:3.21 | ||
|
|
||
| ENV INSTALL_DIR=/opt/hivedscheduler/hivedscheduler | ||
|
|
||
| RUN apk update && apk add --no-cache bash | ||
| RUN apk upgrade --no-cache | ||
|
|
||
| COPY --from=builder ${INSTALL_DIR} ${INSTALL_DIR} | ||
| WORKDIR ${INSTALL_DIR} | ||
|
|
||
| ENTRYPOINT ["./start.sh"] | ||
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 @@ | ||
| # Copyright (c) Microsoft Corporation. | ||
| # Licensed under the MIT License. | ||
|
|
||
| FROM registry.k8s.io/kube-scheduler:v1.28.9 | ||
hippogr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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
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
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.