├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── goreleaser-workflow.yml │ └── linter-workflow.yml ├── .gitignore ├── .goreleaser.yml ├── .krew.yaml ├── .res └── output.png ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cmd └── root.go ├── go.mod ├── go.sum ├── main.go ├── pkg ├── k8s │ └── webhook.go └── printer │ ├── model.go │ └── printer.go └── test.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/goreleaser-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/.github/workflows/goreleaser-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/linter-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/.github/workflows/linter-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.krew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/.krew.yaml -------------------------------------------------------------------------------- /.res/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/.res/output.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/README.md -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/cmd/root.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/main.go -------------------------------------------------------------------------------- /pkg/k8s/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/pkg/k8s/webhook.go -------------------------------------------------------------------------------- /pkg/printer/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/pkg/printer/model.go -------------------------------------------------------------------------------- /pkg/printer/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/pkg/printer/printer.go -------------------------------------------------------------------------------- /test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/kubectl-view-webhook/HEAD/test.yaml --------------------------------------------------------------------------------