Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/getting-started/1_download_kubectl.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ class DownloadKubeCTL extends React.Component {
<p>
Download <code>kubectl</code> from{' '}
<a
href='https://storage.googleapis.com/kubernetes-release/release/v1.7.5/bin/windows/amd64/kubectl.exe'
href='https://storage.googleapis.com/kubernetes-release/release/v1.11.7/bin/windows/amd64/kubectl.exe'
target='_blank'
rel='noopener noreferrer'
>
https://storage.googleapis.com/kubernetes-release/release/v1.7.5/bin/windows/amd64/kubectl.exe
https://storage.googleapis.com/kubernetes-release/release/v1.11.7/bin/windows/amd64/kubectl.exe
</a>{' '}
to a folder of your choice and make it available in your
environment PATH variable.
Expand All @@ -51,7 +51,7 @@ class DownloadKubeCTL extends React.Component {

<CodeBlock>
<Prompt>
{`curl -O https://storage.googleapis.com/kubernetes-release/release/v1.7.5/bin/darwin/amd64/kubectl`}
{`curl -O https://storage.googleapis.com/kubernetes-release/release/v1.11.7/bin/darwin/amd64/kubectl`}
</Prompt>
<Prompt>{`chmod +x kubectl`}</Prompt>
<Prompt>{`sudo cp kubectl /usr/local/bin/kubectl`}</Prompt>
Expand Down Expand Up @@ -108,7 +108,7 @@ class DownloadKubeCTL extends React.Component {

<CodeBlock>
<Prompt>
{`curl -O https://storage.googleapis.com/kubernetes-release/release/v1.7.5/bin/linux/amd64/kubectl`}
{`curl -O https://storage.googleapis.com/kubernetes-release/release/v1.11.7/bin/linux/amd64/kubectl`}
</Prompt>
<Prompt>{`chmod +x kubectl`}</Prompt>
<Prompt>{`sudo cp kubectl /usr/local/bin/kubectl`}</Prompt>
Expand Down