From 0bb5e904ee7f98cedfe87ac5fdbed1dbb9d7aaf5 Mon Sep 17 00:00:00 2001 From: Pinaki Sarkar Date: Thu, 12 Feb 2026 08:52:08 -0800 Subject: [PATCH 1/2] dummy commit dummy commit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5ca3a85..4cc4b9c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # IMPS + **WARNING**: CloudBees maintains this fork of the original repository and applies only essential security fixes to support its customers. The use of the images or Helm chart published in this project is **NOT** supported for external purposes. Utilizing these images or charts is at your own risk. IMPS (IMagePullSecrets) controller is a Kubernetes operator that manages pull secrets based label or annotation From a34af84fb73445f545eb9f8aba4f575370fad066 Mon Sep 17 00:00:00 2001 From: Pinaki Sarkar Date: Thu, 12 Feb 2026 08:55:24 -0800 Subject: [PATCH 2/2] Log download URL for test tools in install_envtest.sh Added echo statement to log the download URL for the test tools. --- scripts/install_envtest.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/install_envtest.sh b/scripts/install_envtest.sh index 24b990c..37f1e8d 100755 --- a/scripts/install_envtest.sh +++ b/scripts/install_envtest.sh @@ -22,6 +22,9 @@ if [ ! -e bin/"${target_dir_name}" ]; then if [ "$os" == "darwin" ] && [ "$arch" == "arm64" ]; then arch="amd64" fi + + echo "Downloading file: https://go.kubebuilder.io/test-tools/$version/$os/$arch" + curl -sSL "https://go.kubebuilder.io/test-tools/$version/$os/$arch" | tar -xz -C /tmp/ mv "/tmp/kubebuilder" bin/"${target_dir_name}" fi