update docs
parent
46c2f31249
commit
01cdc5b86e
2
Makefile
2
Makefile
|
|
@ -3,7 +3,7 @@ PACKAGE := github.com/derailed/$(NAME)
|
|||
GIT := $(shell git rev-parse --short HEAD)
|
||||
SOURCE_DATE_EPOCH ?= $(shell date +%s)
|
||||
DATE := $(shell date -u -d @${SOURCE_DATE_EPOCH} +%FT%T%Z)
|
||||
VERSION ?= v0.19.1
|
||||
VERSION ?= v0.19.7
|
||||
IMG_NAME := derailed/k9s
|
||||
IMAGE := ${IMG_NAME}:${VERSION}
|
||||
|
||||
|
|
|
|||
31
README.md
31
README.md
|
|
@ -63,21 +63,24 @@ K9s is available on Linux, macOS and Windows platforms.
|
|||
scoop install k9s
|
||||
```
|
||||
|
||||
* Building from source
|
||||
K9s was built using go 1.13 or above. In order to build K9 from source you must:
|
||||
1. Clone the repo
|
||||
2. Add the following command in your go.mod file
|
||||
|
||||
```text
|
||||
replace (
|
||||
github.com/derailed/k9s => MY_K9S_CLONED_GIT_REPO
|
||||
)
|
||||
```
|
||||
|
||||
3. Build and run the executable
|
||||
* Via a GO install
|
||||
|
||||
```shell
|
||||
go run main.go
|
||||
# NOTE: The dev version will be in effect!
|
||||
go get -u github.com/derailed/k9s
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Building From Source
|
||||
|
||||
K9s is currently using go v1.14 or above. In order to build K9 from source you must:
|
||||
|
||||
1. Clone the repo
|
||||
2. Build and run the executable
|
||||
|
||||
```shell
|
||||
make build && ./k9s
|
||||
```
|
||||
|
||||
---
|
||||
|
|
@ -159,7 +162,7 @@ k9s -l debug
|
|||
K9s uses aliases to navigate most K8s resources.
|
||||
|
||||
| Action | Command | Comment |
|
||||
|---------------------------------------------------------------|-----------------------|-------------------------------------------------------------|
|
||||
|---------------------------------------------------------------|-------------------------------|------------------------------------------------------------------------|
|
||||
| Show active keyboard mnemonics and help | `?` | |
|
||||
| Show all available resource alias | `ctrl-a` | |
|
||||
| To bail out of K9s | `:q`, `ctrl-c` | |
|
||||
|
|
|
|||
Loading…
Reference in New Issue