Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kubernetes-sigs/kui
A hybrid command-line/UI development experience for cloud-native development
https://github.com/kubernetes-sigs/kui
cli dashboard electron kubectl kubernetes plugin ui visualization visualizations
Last synced: 10 days ago
JSON representation
A hybrid command-line/UI development experience for cloud-native development
- Host: GitHub
- URL: https://github.com/kubernetes-sigs/kui
- Owner: kubernetes-sigs
- License: apache-2.0
- Created: 2018-11-26T22:39:03.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-12T05:24:07.000Z (28 days ago)
- Last Synced: 2024-10-29T15:33:24.454Z (10 days ago)
- Topics: cli, dashboard, electron, kubectl, kubernetes, plugin, ui, visualization, visualizations
- Language: TypeScript
- Homepage:
- Size: 86.5 MB
- Stars: 2,843
- Watchers: 37
- Forks: 183
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-repositories - kubernetes-sigs/kui - A hybrid command-line/UI development experience for cloud-native development (TypeScript)
- awesome-starred - kubernetes-sigs/kui - A hybrid command-line/UI development experience for cloud-native development (kubernetes)
- awesome-list - kui - line/UI development experience for cloud-native development | kubernetes-sigs | 1809 | (TypeScript)
README
[![GitHub Stars](https://badgen.net/github/stars/IBM/kui)](https://github.com/IBM/kui/stargazers)
[![GitHub Forks](https://badgen.net/github/forks/IBM/kui)](https://github.com/IBM/kui/network/members)
![ts](https://flat.badgen.net/badge/-/TypeScript?icon=typescript&label&labelColor=blue&color=555555)
![Electron](https://flat.badgen.net/badge/Electron/22/orange)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg?style=flat-square)](https://opensource.org/licenses/Apache-2.0)
[![test](https://github.com/kubernetes-sigs/kui/actions/workflows/test.yaml/badge.svg)](https://github.com/kubernetes-sigs/kui/actions/workflows/test.yaml)[**Blogs**](https://medium.com/the-graphical-terminal) **|** [**PDF Summary**](docs/presentations/kui-cloudnative-devx-2021.pdf) **|** [**Installation**](#install) **|** [**API**](docs/api/README.md) **|** [**Custom Graphical CLIs**](#custom)
# Kui: a Framework for Enhancing CLIs with Graphics
We love CLIs, and think they are critical for interacting in a
flexible way with the cloud. We need the power to go off the
rails. But ASCII is tedious.Kui takes your normal `kubectl` command line requests and **responds
with graphics**. Instead of ASCII tables, you are presented with
sortable ones. Instead of copying and pasting long auto-generated
resource names, in Kui **you just click**.Kui is also fast. It launches in seconds, and can process `kubectl`
commands **2-3 times faster** than `kubectl` itself.> Help us make Kubernetes tools better by filling out a [quick 2
> minute survey](https://forms.gle/BMvpscU9Yi5Horp29) on your tool
> preferences. Thanks!## Installing Kui for Kubernetes
We offer prebuilt images optimized for an enhanced Kubernetes CLI
experience.#### MacOS (Intel and Apple Silicon)
```bash
brew install kui
kubectl kui get pods
open /Applications/Kui.app
```#### Windows and Linux
[Download and
unzip](https://github.com/kubernetes-sigs/kui/releases/latest), then
add the unzipped directory to your PATH. Now use `kubectl kui` or
launch the `Kui` executable to use Kui's built-in REPL.> **Windows Warning**: Please use forward slashes for filepaths, e.g. c:/users, not c:\users.
#### I don't trust the prebuilts
We hear you. Choose your platform (e.g. `mac:amd64`), execute the
following, then look in `./dist/electron`.```sh
git clone [email protected]:kubernetes-sigs/kui.git && cd kui && npm ci && \
npm run build:electron:mac:amd64
```## I Want to Make a Custom Graphical CLI
Kui is a framework for adding graphics to CLIs. Kui allows for either
a hosted client-server architecture, or the distribution of
double-clickable applications (via [Electron](https://electronjs.org)).Using the Kui framework, you can design your own Kubernetes
enhancements, set a custom theme or custom icon, and enhance the
commands of your favorite CLI. Check out the [template
repo](https://github.com/kui-shell/KuiClientTemplate). If your
enhancements would be generally valuable, please PR them back here,
e.g. awesome Kubernetes enhancements can be integrated with the [core
Kubernetes plugin](plugins/plugin-kubectl).## Code of Conduct
Participation in the Kubernetes community is governed by the [Kubernetes Code
of Conduct](https://github.com/kubernetes-sigs/krew/blob/master/code-of-conduct.md).