diff --git a/.goreleaser.yml b/.goreleaser.yml index ef73cac4..77d5eb04 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -76,10 +76,10 @@ snapcraft: bit: Arm bitv6: Arm6 bitv7: Arm7 - grade: devel - confinement: devmode - # grade: stable - # confinement: strict + # grade: devel + # confinement: devmode + grade: stable + confinement: strict apps: k9s: plugs: ["home", "network", "kube-config"] diff --git a/README.md b/README.md index 601a5502..d75fcd28 100644 --- a/README.md +++ b/README.md @@ -181,16 +181,17 @@ benchmarks: K9s uses aliases to navigate most K8s resources. -| Command | Result | Example | -|-----------------------|----------------------------------------------------|----------------------------| -| `:`alias`` | View a Kubernetes resource aliases | `:po` | -| `?` | Show keyboard shortcuts and help | | -| `Ctrl-a` | Show all available resource alias | select+`` to view | -| `/`filter`ENTER`> | Filter out a resource view given a filter | `/bumblebeetuna` | -| `` | Bails out of command mode | | -| `d`,`v`, `e`, `l`,... | Key mapping to describe, view, edit, view logs,... | `d` (describes a resource) | -| `:`ctx`` | To view and switch to another Kubernetes context | `:`+`ctx`+`` | -| `:q`, `Ctrl-c` | To bail out of K9s | | +| Command | Result | Example | +|-----------------------------|----------------------------------------------------|----------------------------| +| `:`alias`` | View a Kubernetes resource aliases | `:po` | +| `?` | Show keyboard shortcuts and help | | +| `Ctrl-a` | Show all available resource alias | select+`` to view | +| `/`filter`ENTER` | Filter out a resource view given a filter | `/bumblebeetuna` | +| `/`-l label-selector`ENTER` | Filter resource view by labels | `/-l app=fred` | +| `` | Bails out of command mode | | +| `d`,`v`, `e`, `l`,... | Key mapping to describe, view, edit, view logs,... | `d` (describes a resource) | +| `:`ctx`` | To view and switch to another Kubernetes context | `:`+`ctx`+`` | +| `:q`, `Ctrl-c` | To bail out of K9s | | ---