Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 3 additions & 0 deletions scripts/install_envtest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading