Skip to content

Commit e19f91b

Browse files
author
Pietro Terrizzi
committed
docs: mention docker.io and new kubectl versions
1 parent a548e5e commit e19f91b

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

README.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ New stable versions will be built and pushed automatically by *GitHub action* [w
2828

2929
| kubectl | amd64 | arm64 | armv7 |
3030
| :---: | :---: | :---: | :---: |
31+
|v1.25.2| :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
32+
|v1.24.1| :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
33+
|v1.23.1| :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
3134
|v1.22.2| :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
3235
|v1.21.5| :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
3336
|v1.20.11| :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
@@ -36,7 +39,7 @@ New stable versions will be built and pushed automatically by *GitHub action* [w
3639
|v1.17.17| :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
3740
|v1.16.15| :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
3841

39-
Keep watching our [quay.io](https://quay.io/repository/clastix/kubectl) repository for the latest updates!
42+
Keep watching our [docker.io](https://quay.io/repository/clastix/kubectl) and [quay.io](https://quay.io/repository/clastix/kubectl) repositories for the latest updates!
4043

4144
---
4245

@@ -64,10 +67,10 @@ Client: Docker Engine - Community
6467

6568
### Take our image
6669

67-
Just pull the desired version from [quay.io](https://quay.io/repository/clastix/kubectl) :
70+
Just pull the desired version from [docker.io](https://quay.io/repository/clastix/kubectl) or [quay.io](https://quay.io/repository/clastix/kubectl) :
6871

6972
```bash
70-
$ docker pull quay.io/clastix/kubectl:<desired_version>
73+
$ docker pull clastix/kubectl:<desired_version>
7174
```
7275

7376
OR
@@ -95,16 +98,15 @@ otherwise, Makefile will automatically retrieve its default values.
9598
### Launch a container
9699

97100
```bash
98-
$ docker run --name kubectl quay.io/clastix/kubectl:v1.22.2 version
101+
$ docker run --name kubectl clastix/kubectl:v1.22.2 version --client
99102

100103
Client Version: version.Info{Major:"1", Minor:"22", GitVersion:"v1.22.2", GitCommit:"8b5a19147530eaac9476b0ab82980b4088bbc1b2", GitTreeState:"clean", BuildDate:"2021-09-15T21:38:50Z", GoVersion:"go1.16.8", Compiler:"gc", Platform:"linux/amd64"}
101-
Server Version: version.Info{Major:"1", Minor:"21", GitVersion:"v1.21.5", GitCommit:"aea7bbadd2fc0cd689de94a54e5b7b758869d691", GitTreeState:"clean", BuildDate:"2021-09-15T21:04:16Z", GoVersion:"go1.16.8", Compiler:"gc", Platform:"linux/amd64"}
102104
```
103105

104106
you can also use your own _kubeconfig_
105107

106108
```bash
107-
$ docker run --name kubectl -v ~/.kube/config:/home/nonroot/.kube/config quay.io/clastix/kubectl:<desired_version> get nodes
109+
$ docker run --name kubectl -v ~/.kube/config:/home/nonroot/.kube/config clastix/kubectl:<desired_version> get nodes
108110

109111
NAME STATUS ROLES AGE VERSION
110112
controlplane-00 Ready control-plane,master 13d v1.21.5
@@ -127,7 +129,7 @@ To clean up, just :
127129
3. Remove your kubectl image :
128130

129131
```bash
130-
$ docker rmi -f quay.io/clastix/kubectl:<desired_version>
132+
$ docker rmi -f clastix/kubectl:<desired_version>
131133
```
132134

133135
## FAQ

0 commit comments

Comments
 (0)