Remove k8s-plugin-sriov-network-device image
This image is unused, replaced by ghcr.io/k8snetworkplumbingwg/sriov-network-device-plugin Story: 2010076 Task: 45563 Signed-off-by: Mohammad Issa <mohammad.issa@windriver.com> Change-Id: I3fc5848caa7024cbdcd22a197437a86e8dfb38ef
This commit is contained in:
parent
7b69610d60
commit
8a2dc339a5
@ -1,3 +1,2 @@
|
|||||||
kubernetes/armada
|
kubernetes/armada
|
||||||
kubernetes/plugins/intel-device-plugin
|
kubernetes/plugins/intel-device-plugin
|
||||||
kubernetes/plugins/sriov-network-device-plugin
|
|
||||||
|
@ -1,32 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
################################################################################
|
|
||||||
# Copyright (c) 2020 Wind River Systems, Inc.
|
|
||||||
#
|
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
|
||||||
#
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
PROJECT=$1
|
|
||||||
IMAGE_TAG=$2
|
|
||||||
|
|
||||||
if [ -z "${IMAGE_TAG}" ]; then
|
|
||||||
echo "image tag must be specified. build ${PROJECT} Aborting..." >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
make image
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Failed to make ${PROJECT} image. Aborting..." >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
RETVAL=0
|
|
||||||
docker tag nfvpe/${PROJECT}:latest "${IMAGE_TAG}"
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Failed to tag ${PROJECT} with ${IMAGE_TAG}. Aborting..." >&2
|
|
||||||
RETVAL=1
|
|
||||||
fi
|
|
||||||
|
|
||||||
docker rmi nfvpe/${PROJECT}:latest
|
|
||||||
exit ${RETVAL}
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
|||||||
BUILDER=script
|
|
||||||
LABEL=k8s-plugins-sriov-network-device
|
|
||||||
SOURCE_REPO=https://github.com/intel/sriov-network-device-plugin.git
|
|
||||||
SOURCE_REF=e112960e14df5013083def2aeb14f73b72f0a301
|
|
||||||
COMMAND=bash
|
|
||||||
SCRIPT=build-sriov-network-device-plugin-image.sh
|
|
||||||
ARGS="sriov-device-plugin"
|
|
Loading…
Reference in New Issue
Block a user