-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- New config file format - New subcommand: config view, to display configuration for current context - New command: version, in place of a flag - Refactored directory structure - Completion support for bash, zsh, fish and powershell - Add support for streaming decoding/encoding of input/output to be able to use pipes - Structured command options ala kubectl - Refactored template system to use go embed
- Loading branch information
Showing
202 changed files
with
7,235 additions
and
7,047 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ archives: | |
|
||
release: | ||
draft: true | ||
prerelease: true | ||
prerelease: "true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,44 @@ | ||
# Veidemannctl | ||
|
||
[![License Apache](https://img.shields.io/github/license/nlnwa/veidemannctl.svg)](https://github.com/nlnwa/veidemannctl/blob/master/LICENSE) | ||
[![GitHub release](https://img.shields.io/github/release/nlnwa/veidemannctl.svg)](https://github.com/nlnwa/veidemannctl/releases/latest) | ||
|
||
# veidemannctl | ||
[![Go Report Card](https://goreportcard.com/badge/github.com/nlnwa/veidemannctl?style=flat-square)](https://goreportcard.com/report/github.com/nlnwa/veidemannctl) | ||
[![PkgGoDev](https://pkg.go.dev/badge/github.com/nlnwa/veidemannctl)](https://pkg.go.dev/github.com/nlnwa/veidemannctl) | ||
|
||
## Install | ||
Install the latest release version | ||
|
||
Install the latest release version (linux/amd64) | ||
|
||
```console | ||
curl -sL https://raw.githubusercontent.com/nlnwa/veidemannctl/master/install.sh | bash | ||
``` | ||
|
||
## Usage | ||
|
||
To get a list of available commands and configuration flags: | ||
|
||
```console | ||
veidemanctl -h | ||
``` | ||
|
||
## Documentation | ||
Usage documentation: https://nlnwa.github.io/veidemannctl | ||
|
||
## Build instructions | ||
Usage documentation: <https://nlnwa.github.io/veidemannctl> | ||
|
||
## Build | ||
|
||
```console | ||
go build | ||
``` | ||
|
||
## Generate documentation and templates | ||
## Test | ||
|
||
```console | ||
go test ./... | ||
``` | ||
|
||
## Generate documentation | ||
|
||
```console | ||
go generate | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.