-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
24 additions
and
24 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 |
---|---|---|
|
@@ -14,15 +14,15 @@ | |
FROM docker.io/golang:1.21.6-alpine3.19 | ||
RUN apk --no-cache add git pkgconfig build-base libdrm-dev | ||
RUN apk --no-cache add hwloc-dev --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community | ||
RUN mkdir -p /go/src/github.com/RadeonOpenCompute/k8s-device-plugin | ||
ADD . /go/src/github.com/RadeonOpenCompute/k8s-device-plugin | ||
WORKDIR /go/src/github.com/RadeonOpenCompute/k8s-device-plugin/cmd/k8s-device-plugin | ||
RUN mkdir -p /go/src/github.com/ROCm/k8s-device-plugin | ||
ADD . /go/src/github.com/ROCm/k8s-device-plugin | ||
WORKDIR /go/src/github.com/ROCm/k8s-device-plugin/cmd/k8s-device-plugin | ||
RUN go install \ | ||
-ldflags="-X main.gitDescribe=$(git -C /go/src/github.com/RadeonOpenCompute/k8s-device-plugin/ describe --always --long --dirty)" | ||
-ldflags="-X main.gitDescribe=$(git -C /go/src/github.com/ROCm/k8s-device-plugin/ describe --always --long --dirty)" | ||
|
||
FROM alpine:3.19.0 | ||
LABEL \ | ||
org.opencontainers.image.source="https://github.com/RadeonOpenCompute/k8s-device-plugin" \ | ||
org.opencontainers.image.source="https://github.com/ROCm/k8s-device-plugin" \ | ||
org.opencontainers.image.authors="Kenny Ho <[email protected]>" \ | ||
org.opencontainers.image.vendor="Advanced Micro Devices, Inc." \ | ||
org.opencontainers.image.licenses="Apache-2.0" | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module github.com/RadeonOpenCompute/k8s-device-plugin | ||
module github.com/ROCm/k8s-device-plugin | ||
|
||
go 1.21 | ||
|
||
|
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 |
---|---|---|
|
@@ -2,10 +2,10 @@ apiVersion: v2 | |
name: amd-gpu | ||
description: A Helm chart for deploying Kubernetes AMD GPU device plugin | ||
type: application | ||
home: https://github.com/RadeonOpenCompute/k8s-device-plugin | ||
home: https://github.com/ROCm/k8s-device-plugin | ||
sources: | ||
- https://github.com/RadeonOpenCompute/k8s-device-plugin | ||
icon: https://raw.githubusercontent.com/RadeonOpenCompute/k8s-device-plugin/master/helm/logo.png | ||
- https://github.com/ROCm/k8s-device-plugin | ||
icon: https://raw.githubusercontent.com/ROCm/k8s-device-plugin/master/helm/logo.png | ||
maintainers: | ||
- name: Kenny Ho <[email protected]> | ||
keywords: | ||
|
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 |
---|---|---|
|
@@ -13,15 +13,15 @@ | |
# limitations under the License. | ||
FROM docker.io/golang:1.21.6-alpine3.19 | ||
RUN apk --no-cache add git pkgconfig build-base libdrm-dev | ||
RUN mkdir -p /go/src/github.com/RadeonOpenCompute/k8s-device-plugin | ||
ADD . /go/src/github.com/RadeonOpenCompute/k8s-device-plugin | ||
WORKDIR /go/src/github.com/RadeonOpenCompute/k8s-device-plugin/cmd/k8s-node-labeller | ||
RUN mkdir -p /go/src/github.com/ROCm/k8s-device-plugin | ||
ADD . /go/src/github.com/ROCm/k8s-device-plugin | ||
WORKDIR /go/src/github.com/ROCm/k8s-device-plugin/cmd/k8s-node-labeller | ||
RUN go install \ | ||
-ldflags="-X main.gitDescribe=$(git -C /go/src/github.com/RadeonOpenCompute/k8s-device-plugin/ describe --always --long --dirty)" | ||
-ldflags="-X main.gitDescribe=$(git -C /go/src/github.com/ROCm/k8s-device-plugin/ describe --always --long --dirty)" | ||
|
||
FROM alpine:3.19.0 | ||
LABEL \ | ||
org.opencontainers.image.source="https://github.com/RadeonOpenCompute/k8s-device-plugin" \ | ||
org.opencontainers.image.source="https://github.com/ROCm/k8s-device-plugin" \ | ||
org.opencontainers.image.authors="Kenny Ho <[email protected]>" \ | ||
org.opencontainers.image.vendor="Advanced Micro Devices, Inc." \ | ||
org.opencontainers.image.licenses="Apache-2.0" | ||
|