mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-12 21:36:24 +00:00
remove unused images cuda-vector-add
This commit is contained in:
parent
fbaeab34f9
commit
9ca4f946f3
@ -12,7 +12,6 @@ registry.k8s.io/cloud-provider-gcp/gcp-compute-persistent-disk-csi-driver
|
|||||||
registry.k8s.io/e2e-test-images/agnhost
|
registry.k8s.io/e2e-test-images/agnhost
|
||||||
registry.k8s.io/e2e-test-images/apparmor-loader
|
registry.k8s.io/e2e-test-images/apparmor-loader
|
||||||
registry.k8s.io/e2e-test-images/busybox
|
registry.k8s.io/e2e-test-images/busybox
|
||||||
registry.k8s.io/e2e-test-images/cuda-vector-add
|
|
||||||
registry.k8s.io/e2e-test-images/httpd
|
registry.k8s.io/e2e-test-images/httpd
|
||||||
registry.k8s.io/e2e-test-images/ipc-utils
|
registry.k8s.io/e2e-test-images/ipc-utils
|
||||||
registry.k8s.io/e2e-test-images/jessie-dnsutils
|
registry.k8s.io/e2e-test-images/jessie-dnsutils
|
||||||
|
@ -1 +0,0 @@
|
|||||||
cuda-vector-add
|
|
@ -1,2 +0,0 @@
|
|||||||
linux/amd64=nvidia/cuda:8.0-devel-ubuntu16.04
|
|
||||||
linux/ppc64le=nvidia/cuda-ppc64le:8.0-devel-ubuntu16.04
|
|
@ -1,27 +0,0 @@
|
|||||||
# Copyright 2021 The Kubernetes Authors.
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
ARG BASEIMAGE
|
|
||||||
FROM $BASEIMAGE
|
|
||||||
|
|
||||||
CROSS_BUILD_COPY qemu-QEMUARCH-static /usr/bin/
|
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
||||||
cuda-samples-$CUDA_PKG_VERSION && \
|
|
||||||
rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
WORKDIR /usr/local/cuda/samples/0_Simple/vectorAdd
|
|
||||||
RUN make
|
|
||||||
|
|
||||||
CMD ./vectorAdd
|
|
@ -1,4 +0,0 @@
|
|||||||
approvers:
|
|
||||||
- mkumatag
|
|
||||||
emeritus_approvers:
|
|
||||||
- jiayingz
|
|
@ -1,17 +0,0 @@
|
|||||||
## cuda_vector_add
|
|
||||||
|
|
||||||
This is a small CUDA application that performs a simple vector addition. Useful for testing CUDA support in Kubernetes.
|
|
||||||
|
|
||||||
## How to release:
|
|
||||||
|
|
||||||
```
|
|
||||||
# Build
|
|
||||||
$ make
|
|
||||||
|
|
||||||
# Push
|
|
||||||
$ make push
|
|
||||||
```
|
|
||||||
|
|
||||||
## Version history:
|
|
||||||
|
|
||||||
1.0: build cuda-vector-add from CUDA 8.0.
|
|
@ -1 +0,0 @@
|
|||||||
1.0
|
|
@ -1,2 +0,0 @@
|
|||||||
linux/amd64=nvidia/cuda:11.4.3-devel-ubuntu20.04
|
|
||||||
linux/arm64=nvidia/cuda:11.4.3-devel-ubuntu20.04
|
|
@ -1,27 +0,0 @@
|
|||||||
# Copyright 2017 The Kubernetes Authors.
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
ARG BASEIMAGE
|
|
||||||
FROM $BASEIMAGE
|
|
||||||
|
|
||||||
ENV CUDA_PKG_VERSION=11-4
|
|
||||||
CROSS_BUILD_COPY qemu-QEMUARCH-static /usr/bin/
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
||||||
cuda-samples-$CUDA_PKG_VERSION && \
|
|
||||||
rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
WORKDIR /usr/local/cuda/samples/0_Simple/vectorAdd
|
|
||||||
RUN make
|
|
||||||
|
|
||||||
CMD nvidia-smi && ./vectorAdd
|
|
@ -1,4 +0,0 @@
|
|||||||
approvers:
|
|
||||||
- mkumatag
|
|
||||||
emeritus_approvers:
|
|
||||||
- jiayingz
|
|
@ -1,18 +0,0 @@
|
|||||||
## cuda_vector_add
|
|
||||||
|
|
||||||
This is a small CUDA application that performs a simple vector addition. Useful for testing CUDA support in Kubernetes.
|
|
||||||
|
|
||||||
## How to release:
|
|
||||||
|
|
||||||
```
|
|
||||||
# Build
|
|
||||||
$ make
|
|
||||||
|
|
||||||
# Push
|
|
||||||
$ make push
|
|
||||||
```
|
|
||||||
|
|
||||||
## Version history:
|
|
||||||
|
|
||||||
1.0: build cuda-vector-add from CUDA 8.0.
|
|
||||||
2.0: build cuda-vector-add from CUDA 10.0
|
|
@ -1 +0,0 @@
|
|||||||
2.4
|
|
@ -163,10 +163,6 @@ const (
|
|||||||
AuthenticatedWindowsNanoServer
|
AuthenticatedWindowsNanoServer
|
||||||
// BusyBox image
|
// BusyBox image
|
||||||
BusyBox
|
BusyBox
|
||||||
// CudaVectorAdd image
|
|
||||||
CudaVectorAdd
|
|
||||||
// CudaVectorAdd2 image
|
|
||||||
CudaVectorAdd2
|
|
||||||
// DistrolessIptables Image
|
// DistrolessIptables Image
|
||||||
DistrolessIptables
|
DistrolessIptables
|
||||||
// Etcd image
|
// Etcd image
|
||||||
@ -227,8 +223,6 @@ func initImageConfigs(list RegistryList) (map[ImageID]Config, map[ImageID]Config
|
|||||||
configs[APIServer] = Config{list.PromoterE2eRegistry, "sample-apiserver", "1.29.2"}
|
configs[APIServer] = Config{list.PromoterE2eRegistry, "sample-apiserver", "1.29.2"}
|
||||||
configs[AppArmorLoader] = Config{list.PromoterE2eRegistry, "apparmor-loader", "1.4"}
|
configs[AppArmorLoader] = Config{list.PromoterE2eRegistry, "apparmor-loader", "1.4"}
|
||||||
configs[BusyBox] = Config{list.PromoterE2eRegistry, "busybox", "1.36.1-1"}
|
configs[BusyBox] = Config{list.PromoterE2eRegistry, "busybox", "1.36.1-1"}
|
||||||
configs[CudaVectorAdd] = Config{list.PromoterE2eRegistry, "cuda-vector-add", "1.0"}
|
|
||||||
configs[CudaVectorAdd2] = Config{list.PromoterE2eRegistry, "cuda-vector-add", "2.3"}
|
|
||||||
configs[DistrolessIptables] = Config{list.BuildImageRegistry, "distroless-iptables", "v0.6.2"}
|
configs[DistrolessIptables] = Config{list.BuildImageRegistry, "distroless-iptables", "v0.6.2"}
|
||||||
configs[Etcd] = Config{list.GcEtcdRegistry, "etcd", "3.5.15-0"}
|
configs[Etcd] = Config{list.GcEtcdRegistry, "etcd", "3.5.15-0"}
|
||||||
configs[Httpd] = Config{list.PromoterE2eRegistry, "httpd", "2.4.38-4"}
|
configs[Httpd] = Config{list.PromoterE2eRegistry, "httpd", "2.4.38-4"}
|
||||||
|
Loading…
Reference in New Issue
Block a user