Skip to content

Commit

Permalink
Update 02-client-tools.md
Browse files Browse the repository at this point in the history
Added windows instructions on installing cfssl, cfssljson and kubectl
  • Loading branch information
taswar authored Jan 26, 2018
1 parent 2d197cd commit 3270b08
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/02-client-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,19 @@ sudo mv cfssl_linux-amd64 /usr/local/bin/cfssl
```shell
sudo mv cfssljson_linux-amd64 /usr/local/bin/cfssljson
```
### Windows
Download your version of cfss_windows-386.exe or cfssl_windows-amd64.exe
For windows on 32 bit use powershell, using administrative rights
```shell
PS C:\Windows\system32>Invoke-WebRequest -Uri https://pkg.cfssl.org/R1.2/cfssl_windows-386.exe -OutFile cfssl.exe
PS C:\Windows\system32>Invoke-WebRequest -Uri https://pkg.cfssl.org/R1.2/cfssljson_windows-386.exe -OutFile cfssjson.exe
```
For windows on 64 bit use powershell, using administrative rights
```shell
PS C:\Windows\system32>Invoke-WebRequest -Uri https://pkg.cfssl.org/R1.2/cfssl_windows-amd64.exe -OutFile cfssl.exe
PS C:\Windows\system32>Invoke-WebRequest -Uri https://pkg.cfssl.org/R1.2/mkbundle_windows-amd64.exe -OutFile cfssljson.exe
```


### Verification

Expand Down Expand Up @@ -105,6 +118,12 @@ chmod +x kubectl
sudo mv kubectl /usr/local/bin/
```

### Windows
Note you need to have chocolately package manager installed first (https://chocolatey.org/)
```shell
PS C:\Windows\system32>choco install kubernetes-cli
```

### Verification

Verify `kubectl` version 1.8.0 or higher is installed:
Expand Down

0 comments on commit 3270b08

Please sign in to comment.