This is an automated email from the ASF dual-hosted git repository.
houston pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr-operator.git
The following commit(s) were added to refs/heads/main by this push:
new aa4a4a4 Fix kubebuilder download location in dependency installation.
aa4a4a4 is described below
commit aa4a4a40ce5b027a04e3a93d292b3a69fc1591ec
Author: Houston Putman <[email protected]>
AuthorDate: Wed Aug 25 17:15:30 2021 -0400
Fix kubebuilder download location in dependency installation.
---
hack/install_dependencies.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hack/install_dependencies.sh b/hack/install_dependencies.sh
index f2377b4..015b6a7 100755
--- a/hack/install_dependencies.sh
+++ b/hack/install_dependencies.sh
@@ -44,7 +44,7 @@ fi
# Install Kubebuilder
if ! (which kubebuilder && (kubebuilder version | grep
${kubebuilder_version})); then
- curl -sL "https://go.kubebuilder.io/dl/${kubebuilder_version}/${os}/${arch}"
| tar -xz -C /tmp/
+ curl -sL
"https://github.com/kubernetes-sigs/kubebuilder/releases/download/v${kubebuilder_version}/kubebuilder_${kubebuilder_version}_${os}_${arch}.tar.gz"
| tar -xz -C /tmp/
sudo rm -rf /usr/local/kubebuilder
sudo mv "/tmp/kubebuilder_${kubebuilder_version}_${os}_${arch}"
/usr/local/kubebuilder
export PATH=$PATH:/usr/local/kubebuilder/bin