-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(*): update go.mod & tidy Signed-off-by: ArtemTrofimushkin <[email protected]> * chore(CI): bump go version Signed-off-by: ArtemTrofimushkin <[email protected]> * chore(readme): update readme Signed-off-by: ArtemTrofimushkin <[email protected]> * chore(dumper): bump runtime version Signed-off-by: ArtemTrofimushkin <[email protected]> * chore(*): update CODEOWNERS Signed-off-by: ArtemTrofimushkin <[email protected]> * chore(*): bump packages Signed-off-by: ArtemTrofimushkin <[email protected]> * chore(doc): update autogenerated docs Signed-off-by: ArtemTrofimushkin <[email protected]>
- Loading branch information
1 parent
c2888a2
commit 7709b24
Showing
15 changed files
with
676 additions
and
127 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
* @StupidScience | ||
* @ArtemTrofimushkin |
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ on: | |
- "*" | ||
|
||
env: | ||
GOLANG_VERSION: "1.16" | ||
GOLANG_VERSION: "^1.17.6" | ||
|
||
jobs: | ||
doc: | ||
|
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## kubectl-shovel completion | ||
|
||
generate the autocompletion script for the specified shell | ||
|
||
### Synopsis | ||
|
||
|
||
Generate the autocompletion script for kubectl-shovel for the specified shell. | ||
See each sub-command's help for details on how to use the generated script. | ||
|
||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for completion | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [kubectl-shovel](kubectl-shovel.md) - Get diagnostics from running in k8s dotnet application | ||
* [kubectl-shovel completion bash](kubectl-shovel_completion_bash.md) - generate the autocompletion script for bash | ||
* [kubectl-shovel completion fish](kubectl-shovel_completion_fish.md) - generate the autocompletion script for fish | ||
* [kubectl-shovel completion powershell](kubectl-shovel_completion_powershell.md) - generate the autocompletion script for powershell | ||
* [kubectl-shovel completion zsh](kubectl-shovel_completion_zsh.md) - generate the autocompletion script for zsh | ||
|
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
## kubectl-shovel completion bash | ||
|
||
generate the autocompletion script for bash | ||
|
||
### Synopsis | ||
|
||
|
||
Generate the autocompletion script for the bash shell. | ||
|
||
This script depends on the 'bash-completion' package. | ||
If it is not installed already, you can install it via your OS's package manager. | ||
|
||
To load completions in your current shell session: | ||
$ source <(kubectl-shovel completion bash) | ||
|
||
To load completions for every new session, execute once: | ||
Linux: | ||
$ kubectl-shovel completion bash > /etc/bash_completion.d/kubectl-shovel | ||
MacOS: | ||
$ kubectl-shovel completion bash > /usr/local/etc/bash_completion.d/kubectl-shovel | ||
|
||
You will need to start a new shell for this setup to take effect. | ||
|
||
|
||
``` | ||
kubectl-shovel completion bash | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for bash | ||
--no-descriptions disable completion descriptions | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [kubectl-shovel completion](kubectl-shovel_completion.md) - generate the autocompletion script for the specified shell | ||
|
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
## kubectl-shovel completion fish | ||
|
||
generate the autocompletion script for fish | ||
|
||
### Synopsis | ||
|
||
|
||
Generate the autocompletion script for the fish shell. | ||
|
||
To load completions in your current shell session: | ||
$ kubectl-shovel completion fish | source | ||
|
||
To load completions for every new session, execute once: | ||
$ kubectl-shovel completion fish > ~/.config/fish/completions/kubectl-shovel.fish | ||
|
||
You will need to start a new shell for this setup to take effect. | ||
|
||
|
||
``` | ||
kubectl-shovel completion fish [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for fish | ||
--no-descriptions disable completion descriptions | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [kubectl-shovel completion](kubectl-shovel_completion.md) - generate the autocompletion script for the specified shell | ||
|
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
## kubectl-shovel completion powershell | ||
|
||
generate the autocompletion script for powershell | ||
|
||
### Synopsis | ||
|
||
|
||
Generate the autocompletion script for powershell. | ||
|
||
To load completions in your current shell session: | ||
PS C:\> kubectl-shovel completion powershell | Out-String | Invoke-Expression | ||
|
||
To load completions for every new session, add the output of the above command | ||
to your powershell profile. | ||
|
||
|
||
``` | ||
kubectl-shovel completion powershell [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for powershell | ||
--no-descriptions disable completion descriptions | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [kubectl-shovel completion](kubectl-shovel_completion.md) - generate the autocompletion script for the specified shell | ||
|
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
## kubectl-shovel completion zsh | ||
|
||
generate the autocompletion script for zsh | ||
|
||
### Synopsis | ||
|
||
|
||
Generate the autocompletion script for the zsh shell. | ||
|
||
If shell completion is not already enabled in your environment you will need | ||
to enable it. You can execute the following once: | ||
|
||
$ echo "autoload -U compinit; compinit" >> ~/.zshrc | ||
|
||
To load completions for every new session, execute once: | ||
# Linux: | ||
$ kubectl-shovel completion zsh > "${fpath[1]}/_kubectl-shovel" | ||
# macOS: | ||
$ kubectl-shovel completion zsh > /usr/local/share/zsh/site-functions/_kubectl-shovel | ||
|
||
You will need to start a new shell for this setup to take effect. | ||
|
||
|
||
``` | ||
kubectl-shovel completion zsh [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for zsh | ||
--no-descriptions disable completion descriptions | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [kubectl-shovel completion](kubectl-shovel_completion.md) - generate the autocompletion script for the specified shell | ||
|
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
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 |
---|---|---|
@@ -1,17 +1,91 @@ | ||
module github.com/dodopizza/kubectl-shovel | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/google/uuid v1.2.0 | ||
github.com/googleapis/gnostic v0.5.1 // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/spf13/cobra v1.1.1 | ||
github.com/spf13/cobra v1.2.1 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/stretchr/testify v1.6.1 | ||
k8s.io/api v0.20.5 | ||
k8s.io/apimachinery v0.20.5 | ||
k8s.io/cli-runtime v0.20.5 | ||
k8s.io/client-go v0.20.5 | ||
k8s.io/kubectl v0.20.5 | ||
github.com/stretchr/testify v1.7.0 | ||
k8s.io/api v0.23.3 | ||
k8s.io/apimachinery v0.23.3 | ||
k8s.io/cli-runtime v0.23.3 | ||
k8s.io/client-go v0.23.3 | ||
k8s.io/kubectl v0.23.3 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.81.0 // indirect | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/Azure/go-autorest v14.2.0+incompatible // indirect | ||
github.com/Azure/go-autorest/autorest v0.11.18 // indirect | ||
github.com/Azure/go-autorest/autorest/adal v0.9.13 // indirect | ||
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect | ||
github.com/Azure/go-autorest/logger v0.2.1 // indirect | ||
github.com/Azure/go-autorest/tracing v0.6.0 // indirect | ||
github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd // indirect | ||
github.com/PuerkitoBio/purell v1.1.1 // indirect | ||
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect | ||
github.com/chai2010/gettext-go v0.0.0-20160711120539-c6fed771bfd5 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/evanphx/json-patch v4.12.0+incompatible // indirect | ||
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect | ||
github.com/fatih/camelcase v1.0.0 // indirect | ||
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect | ||
github.com/fvbommel/sortorder v1.0.1 // indirect | ||
github.com/go-errors/errors v1.0.1 // indirect | ||
github.com/go-logr/logr v1.2.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.19.5 // indirect | ||
github.com/go-openapi/swag v0.19.14 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/btree v1.0.1 // indirect | ||
github.com/google/go-cmp v0.5.5 // indirect | ||
github.com/google/gofuzz v1.1.0 // indirect | ||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect | ||
github.com/googleapis/gnostic v0.5.5 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect | ||
github.com/imdario/mergo v0.3.5 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect | ||
github.com/mailru/easyjson v0.7.6 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.0 // indirect | ||
github.com/moby/spdystream v0.2.0 // indirect | ||
github.com/moby/term v0.0.0-20210610120745-9d4ed1856297 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/russross/blackfriday v1.5.2 // indirect | ||
github.com/russross/blackfriday/v2 v2.0.1 // indirect | ||
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect | ||
github.com/xlab/treeprint v0.0.0-20181112141820-a009c3971eca // indirect | ||
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect | ||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect | ||
golang.org/x/net v0.0.0-20211209124913-491a49abca63 // indirect | ||
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect | ||
golang.org/x/sys v0.0.0-20210831042530-f4d43177bf5e // indirect | ||
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
k8s.io/component-base v0.23.3 // indirect | ||
k8s.io/klog/v2 v2.30.0 // indirect | ||
k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect | ||
k8s.io/utils v0.0.0-20211116205334-6203023598ed // indirect | ||
sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect | ||
sigs.k8s.io/kustomize/api v0.10.1 // indirect | ||
sigs.k8s.io/kustomize/kyaml v0.13.0 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect | ||
sigs.k8s.io/yaml v1.2.0 // indirect | ||
) |
Oops, something went wrong.