From f4ec54ef75cc5ec3d6969dd28645720def2e44ed Mon Sep 17 00:00:00 2001 From: ioanc Date: Mon, 31 Jul 2023 19:00:46 +0200 Subject: [PATCH] Update 02-client-tools.md Fixing broken link for cfssl and cfssljson --- docs/02-client-tools.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/02-client-tools.md b/docs/02-client-tools.md index 94d93be..bc09433 100644 --- a/docs/02-client-tools.md +++ b/docs/02-client-tools.md @@ -12,8 +12,8 @@ Download and install `cfssl` and `cfssljson`: ### OS X ``` -curl -o cfssl https://storage.googleapis.com/kubernetes-the-hard-way/cfssl/1.4.1/darwin/cfssl -curl -o cfssljson https://storage.googleapis.com/kubernetes-the-hard-way/cfssl/1.4.1/darwin/cfssljson +curl -o cfssl https://github.com/cloudflare/cfssl/releases/download/v1.4.1/cfssl_1.4.1_darwin_amd64 +curl -o cfssljson https://github.com/cloudflare/cfssl/releases/download/v1.4.1/cfssljson_1.4.1_darwin_amd64 ``` ``` @@ -34,8 +34,9 @@ brew install cfssl ``` wget -q --show-progress --https-only --timestamping \ - https://storage.googleapis.com/kubernetes-the-hard-way/cfssl/1.4.1/linux/cfssl \ - https://storage.googleapis.com/kubernetes-the-hard-way/cfssl/1.4.1/linux/cfssljson + -O cfssl https://github.com/cloudflare/cfssl/releases/download/v1.4.1/cfssl_1.4.1_linux_amd64 +wget -q --show-progress --https-only --timestamping \ + -O cfssljson https://github.com/cloudflare/cfssl/releases/download/v1.4.1/cfssljson_1.4.1_linux_amd64 ``` ```