Skip to content

Latest commit

 

History

History
70 lines (53 loc) · 1.49 KB

README.md

File metadata and controls

70 lines (53 loc) · 1.49 KB

ktool CLI

A CLI that calls common kubernetes commands to make managing it easier.

ktool is released under the MIT license. PRs welcome! Follow @gaussianfrog

Install

git clone https://github.com/projectjudge/ktool.git
cp ktool/bin/ktool <somewhere_in_your_path>/ktool

Or

go get github.com/projectjudge/ktool

Usage

Open a new pane/terminal and run:

$ ktool -h
Ktool is a simplified kubectl

Usage:
  ktool [flags]
  ktool [command]

Available Commands:
  a           Watch all the pods in a k8s cluster
  help        Help about any command
  l           Watch a pods logs

Flags:
  -h, --help   help for ktool

Use "ktool [command] --help" for more information about a command.

Devving

Single build

./build.sh

Watcher build

gomon **/*.go -- go build -o bin/ktool .