Skip to content

Latest commit

 

History

History
74 lines (49 loc) · 1.68 KB

02-client-tools.md

File metadata and controls

74 lines (49 loc) · 1.68 KB

Installing the Client Tools

In this lab you will install the command line utilities required to complete this tutorial: cfssl, cfssljson, and kubectl.

Install CFSSL

The cfssl and cfssljson command line utilities will be used to provision a PKI Infrastructure and generate TLS certificates.

Download and install cfssl and cfssljson:

OS X + Go

go install github.com/cloudflare/cfssl/cmd/cfssl@latest
go install github.com/cloudflare/cfssl/cmd/cfssljson@latest

Verification

Verify cfssl and cfssljson version 1.4.1 or higher is installed:

cfssl version

output

Version: dev
Runtime: go1.21.1
cfssljson --version
Version: dev
Runtime: go1.21.1

Install kubectl

The kubectl command line utility is used to interact with the Kubernetes API Server. Download and install kubectl from the official release binaries:

OS X

curl -o kubectl https://storage.googleapis.com/kubernetes-release/release/v1.28.0/bin/darwin/amd64/kubectl
chmod +x kubectl
sudo mv kubectl /usr/local/bin/

Verification

Verify kubectl version 1.28.0 or higher is installed:

kubectl version --client

output

Client Version: version.Info{Major:"1", Minor:"28", GitVersion:"v1.21.0", GitCommit:"cb303e613a121a29364f75cc67d3d580833a7479", GitTreeState:"clean", BuildDate:"2021-04-08T16:31:21Z", GoVersion:"go1.16.1", Compiler:"gc", Platform:"linux/amd64"}

Next: Provisioning Compute Resources