Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add resource filter dialog. #17

Merged
merged 6 commits into from
Nov 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .github/workflows/changelog.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:

build:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v1
with:
go-version: 1.14
- uses: actions/checkout@v2.3.4
- run: go mod download
- name: Build
run: cd ./cmd/lazykube && go build -v .
- name: Lint
uses: Jerome1337/golint-action@v1.0.2
with:
golint-path: ./
- name: Go report card
# You may pin to the exact commit or the version.
# uses: creekorful/goreportcard-action@1f35ced8cdac2cba28c9a2f2288a16aacfd507f9
uses: creekorful/goreportcard-action@v1.0
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
### Changelog

All notable changes to this project will be documented in this file. Dates are displayed in UTC.

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v0.1.2](https://github.com/TNK-Studio/lazykube/compare/v0.1.1...v0.1.2)

> 17 November 2020

- fix: #15 [`#16`](https://github.com/TNK-Studio/lazykube/pull/16)
- chore: modify actions [`#14`](https://github.com/TNK-Studio/lazykube/pull/14)
- chore: add changelog ci [`#11`](https://github.com/TNK-Studio/lazykube/pull/11)
- docs: update readme. add faq [`#10`](https://github.com/TNK-Studio/lazykube/pull/10)
- fix: Fixed a BUG where the program quits when the K8s API Server returns an error [`4dd8f9a`](https://github.com/TNK-Studio/lazykube/commit/4dd8f9a6222d1a25bb82443e26cad23bf226a956)
- chore: add gitee mirror action [`25fd0f0`](https://github.com/TNK-Studio/lazykube/commit/25fd0f038ce07c41f9d6d4b796a4c8f71f50bacb)

#### [v0.1.1](https://github.com/TNK-Studio/lazykube/compare/v0.1.0...v0.1.1)

> 16 November 2020

- Dev [`#9`](https://github.com/TNK-Studio/lazykube/pull/9)
- docs: modify readme [`c6091be`](https://github.com/TNK-Studio/lazykube/commit/c6091be52028d6860054cc3956e6f19bf4d43abb)
- fix: previous line bug [`42e6c50`](https://github.com/TNK-Studio/lazykube/commit/42e6c506756326d8271bcb21b7fe7164cc8b409b)
- fix: Optimize log rendering [`ec1ba69`](https://github.com/TNK-Studio/lazykube/commit/ec1ba69e773b00da2a5128d9f9111ba411e2f63e)

#### v0.1.0

> 15 November 2020

- feat: modify render plot [`#7`](https://github.com/TNK-Studio/lazykube/pull/7)
- Dev [`#6`](https://github.com/TNK-Studio/lazykube/pull/6)
- Dev [`#5`](https://github.com/TNK-Studio/lazykube/pull/5)
- feat: add kubecli and navigation actions. [`#4`](https://github.com/TNK-Studio/lazykube/pull/4)
- feat: add Navigation View [`#3`](https://github.com/TNK-Studio/lazykube/pull/3)
- feat: add ViewClickHandler [`#2`](https://github.com/TNK-Studio/lazykube/pull/2)
- Dev [`#1`](https://github.com/TNK-Studio/lazykube/pull/1)
- init [`e60a15a`](https://github.com/TNK-Studio/lazykube/commit/e60a15aaed1232b328bab2896657cd7abe92b17f)
- feat: add kubecli.KubeCLI [`453259d`](https://github.com/TNK-Studio/lazykube/commit/453259dd37c54ed11562cadea63d92fd3c595f7b)
- fix: fix detail view [`5f27486`](https://github.com/TNK-Studio/lazykube/commit/5f2748638b318b24e68e734b5e94446f1d964760)
14 changes: 8 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,29 @@ module github.com/TNK-Studio/lazykube

go 1.14

replace github.com/jroimartin/gocui v0.4.0 => github.com/elfgzp/gocui v0.4.1-0.20201118030412-21fac610f2e0

require (
github.com/buger/goterm v0.0.0-20200322175922-2f3e71b85129
github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
github.com/fastly/go-utils v0.0.0-20180712184237-d95a45783239 // indirect
github.com/gojp/goreportcard v0.0.0-20201106142952-232d912e513e // indirect
github.com/gookit/color v1.3.2
github.com/guptarohit/asciigraph v0.5.1
github.com/imdario/mergo v0.3.8 // indirect
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 // indirect
github.com/jesseduffield/asciigraph v0.0.0-20190605104717-6d88e39309ee
github.com/jesseduffield/lazydocker v0.9.1 // indirect
github.com/jroimartin/gocui v0.4.0
github.com/lestrrat/go-envload v0.0.0-20180220120943-6ed08b54a570 // indirect
github.com/lestrrat/go-strftime v0.0.0-20180220042222-ba3bf9c1d042 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/nsf/termbox-go v0.0.0-20200418040025-38ba6e5628f1 // indirect
github.com/pochard/logrotator v1.1.3
github.com/sirupsen/logrus v1.7.0
github.com/spf13/cobra v1.0.0
github.com/spkg/bom v1.0.0
google.golang.org/appengine v1.6.5
github.com/tebeka/strftime v0.1.5 // indirect
k8s.io/api v0.19.3
k8s.io/apimachinery v0.19.3
k8s.io/cli-runtime v0.19.3
k8s.io/client-go v0.19.3
k8s.io/klog v1.0.0 // indirect
k8s.io/klog/v2 v2.2.0
k8s.io/kubectl v0.19.3
k8s.io/metrics v0.19.3
Expand Down
Loading