You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ha...@apache.org on 2021/08/22 14:19:09 UTC

[skywalking-swck] branch master updated: Update README.md for download anchor (#32)

This is an automated email from the ASF dual-hosted git repository.

hanahmily pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-swck.git


The following commit(s) were added to refs/heads/master by this push:
     new d61a348  Update README.md for download anchor (#32)
d61a348 is described below

commit d61a348030b6dbeeb1f3463426c6209980c5a25d
Author: 吴晟 Wu Sheng <wu...@foxmail.com>
AuthorDate: Sun Aug 22 22:19:03 2021 +0800

    Update README.md for download anchor (#32)
    
    * Update README.md
    
    * Update kubebuilder release address
    
    Signed-off-by: Gao Hongtao <ha...@gmail.com>
    
    Co-authored-by: Gao Hongtao <ha...@gmail.com>
---
 README.md                   | 2 +-
 hack/install-kubebuilder.sh | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 9c9f416..01efe56 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ SWCK is a platform for the SkyWalking user, provisions, upgrades, maintains SkyW
 
 # Quick Start
 
- * Go to the [download page](https://skywalking.apache.org/downloads/) to download latest release manifest. 
+ * Go to the [download page](https://skywalking.apache.org/downloads/#SkyWalkingCloudonKubernetes) to download latest release manifest. 
 
 ## Operator
 
diff --git a/hack/install-kubebuilder.sh b/hack/install-kubebuilder.sh
index c5fdcc5..63cf03e 100755
--- a/hack/install-kubebuilder.sh
+++ b/hack/install-kubebuilder.sh
@@ -15,9 +15,10 @@
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
+set -ex
 
 os=$(go env GOOS)
 arch=$(go env GOARCH)
-curl -L https://go.kubebuilder.io/dl/2.3.1/${os}/${arch} | tar -xz -C /tmp/
+curl -L https://github.com/kubernetes-sigs/kubebuilder/releases/download/v2.3.1/kubebuilder_2.3.1_${os}_${arch}.tar.gz | tar -xz -C /tmp/
 sudo mv /tmp/kubebuilder_2.3.1_${os}_${arch} /usr/local/kubebuilder
 export PATH=$PATH:/usr/local/kubebuilder/bin