remove unused images cuda-vector-add

This commit is contained in:
Antonio Ojea 2024-09-05 10:22:06 +00:00
parent fbaeab34f9
commit 9ca4f946f3
13 changed files with 0 additions and 111 deletions

View File

@ -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/apparmor-loader
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/ipc-utils
registry.k8s.io/e2e-test-images/jessie-dnsutils

View File

@ -1 +0,0 @@
cuda-vector-add

View File

@ -1,2 +0,0 @@
linux/amd64=nvidia/cuda:8.0-devel-ubuntu16.04
linux/ppc64le=nvidia/cuda-ppc64le:8.0-devel-ubuntu16.04

View File

@ -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

View File

@ -1,4 +0,0 @@
approvers:
- mkumatag
emeritus_approvers:
- jiayingz

View File

@ -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.

View File

@ -1 +0,0 @@
1.0

View File

@ -1,2 +0,0 @@
linux/amd64=nvidia/cuda:11.4.3-devel-ubuntu20.04
linux/arm64=nvidia/cuda:11.4.3-devel-ubuntu20.04

View File

@ -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

View File

@ -1,4 +0,0 @@
approvers:
- mkumatag
emeritus_approvers:
- jiayingz

View File

@ -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

View File

@ -1 +0,0 @@
2.4

View File

@ -163,10 +163,6 @@ const (
AuthenticatedWindowsNanoServer
// BusyBox image
BusyBox
// CudaVectorAdd image
CudaVectorAdd
// CudaVectorAdd2 image
CudaVectorAdd2
// DistrolessIptables Image
DistrolessIptables
// 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[AppArmorLoader] = Config{list.PromoterE2eRegistry, "apparmor-loader", "1.4"}
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[Etcd] = Config{list.GcEtcdRegistry, "etcd", "3.5.15-0"}
configs[Httpd] = Config{list.PromoterE2eRegistry, "httpd", "2.4.38-4"}