Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# 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

```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 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

```bash
./build.sh
```

### Watcher build

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