Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonnydgreen/ktool
A simplified toolkit for kubernetes
https://github.com/jonnydgreen/ktool
kubectl kubernetes toolkit
Last synced: 8 days ago
JSON representation
A simplified toolkit for kubernetes
- Host: GitHub
- URL: https://github.com/jonnydgreen/ktool
- Owner: jonnydgreen
- License: mit
- Created: 2019-04-04T21:52:45.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-21T17:09:55.000Z (over 5 years ago)
- Last Synced: 2023-07-12T05:45:44.294Z (over 1 year ago)
- Topics: kubectl, kubernetes, toolkit
- Language: Go
- Homepage:
- Size: 24.5 MB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ktool CLI
A CLI that calls common kubernetes commands to make managing it easier.
## Install
```bash
git clone https://github.com/projectjudge/ktool.git
cp ktool/bin/ktool /ktool
```Or
```bash
go get github.com/projectjudge/ktool
```## Usage
Open a new pane/terminal and run:
```shell
$ ktool -h
Ktool is a simplified kubectlUsage:
ktool [flags]
ktool [command]Available Commands:
a Watch all the pods in a k8s cluster
help Help about any command
l Watch a pods logsFlags:
-h, --help help for ktoolUse "ktool [command] --help" for more information about a command.
```## Devving
### Single build
```bash
./build.sh
```### Watcher build
```bash
gomon **/*.go -- go build -o bin/ktool .
```