diff --git a/k8s-tools/Dockerfile b/k8s-tools/Dockerfile deleted file mode 100644 index c050736..0000000 --- a/k8s-tools/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -FROM alpine:3.20.2 - -# Commit details - -ARG commit -ENV IMAGE_COMMIT=$commit -LABEL io.kyma-project.third-party-images.commit=$commit - -LABEL source=git@github.com:kyma-project/third-party-images.git - -ENV KUBECTL_VERSION="v1.26.10" - -RUN apk --no-cache upgrade &&\ - apk --no-cache add wget openssl coreutils bash jq grep inotify-tools &&\ - wget https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl -O /usr/local/bin/kubectl &&\ - chmod +x /usr/local/bin/kubectl - -ENTRYPOINT ["/bin/bash"] diff --git a/k8s-tools/Makefile b/k8s-tools/Makefile deleted file mode 100644 index accccea..0000000 --- a/k8s-tools/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -APP_NAME ?= k8s-tools -APP_VERSION = $(shell date +'%Y%m%d') -TAG = $(APP_VERSION)-$(DOCKER_TAG) -IMG = $(DOCKER_PUSH_REPOSITORY)$(DOCKER_PUSH_DIRECTORY)/$(APP_NAME):$(TAG) -IMG_DOCKER_TAG = $(DOCKER_PUSH_REPOSITORY)$(DOCKER_PUSH_DIRECTORY)/$(APP_NAME):$(DOCKER_TAG) - -# Use generic makefile -COMMON_DIR = $(realpath $(shell pwd)/../)/common -include $(COMMON_DIR)/generic_makefile.mk diff --git a/k8s-tools/README.md b/k8s-tools/README.md deleted file mode 100644 index 66a1753..0000000 --- a/k8s-tools/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# k8s-tools - -This image contains kubectl. - -It is used in many Helm charts in Kyma, mostly as an init container. - -This is a custom image that is NOT a copy of an existing third-party image.