Skip to content
This repository has been archived by the owner on Jul 30, 2023. It is now read-only.

Commit

Permalink
update README for Go1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Hidetatsu Yaginuma committed Feb 17, 2021
1 parent 36c18fe commit df58718
Showing 1 changed file with 7 additions and 29 deletions.
36 changes: 7 additions & 29 deletions README.md
Expand Up @@ -49,7 +49,13 @@ Additionally, if `kubectl` resulted an error, kubecolor just shows the error mes
brew install dty1er/tap/kubecolor
```

### Manually via go get
### Manually via go command

```sh
go install github.com/dty1er/kubecolor/cmd/kubecolor@latest
```

If you are not using module mode (or if just above doesn't work), try below:

```sh
go get -u github.com/dty1er/kubecolor/cmd/kubecolor
Expand Down Expand Up @@ -133,34 +139,6 @@ KUBECTL_COMMAND="kubectl.1.17" kubecolor get po

When you don't set `KUBECTL_COMMAND`, then `kubectl` is used by default.

## Supported commands

Checked: Supported and works in current latest version
Unchecked: Will be supported but it's still under development
Not in the list: Won't be supported because it's not READ operation

### kubectl commands

- [x] kubectl get
- [x] kubectl top
- [x] kubectl describe
- [x] kubectl explain
- [x] kubectl api-rsources
- [x] kubectl api-versions
- [x] kubectl version
- [x] kubectl options

### format options

- [x] json
- [x] wide
- [x] yaml
- [x] custom-columns

## Other features which currently unsupported but will be done in the future

- [ ] Configuring custom colors

## Supported kubectl version

Because kubecolor internally calls `kubectl` command, if you are using unsupported kubectl version, it's also not supported by kubecolor.
Expand Down

0 comments on commit df58718

Please sign in to comment.