-
Notifications
You must be signed in to change notification settings - Fork 504
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* new plugin crashwatch * crashwatch.yaml file updated * sha256 issue fixed * crashwatch.yaml updated
- Loading branch information
1 parent
5654d04
commit 882655e
Showing
1 changed file
with
60 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
apiVersion: krew.googlecontainertools.github.com/v1alpha2 | ||
kind: Plugin | ||
metadata: | ||
name: crashwatch | ||
spec: | ||
version: "v1.0.6" | ||
platforms: | ||
- selector: | ||
matchLabels: | ||
os: linux | ||
arch: amd64 | ||
uri: https://github.com/bedirhangull/kubectl-crashwatch/releases/download/v1.0.6/kubectl-crashwatch_linux_amd64.tar.gz | ||
sha256: "de8490566a1867415f3babccf74ab6f4807e95df6c860e71da9bedb80ed6e965" | ||
files: | ||
- from: "kubectl-crashwatch" | ||
to: "." | ||
- from: LICENSE | ||
to: "." | ||
bin: "kubectl-crashwatch" | ||
|
||
- selector: | ||
matchLabels: | ||
os: darwin | ||
arch: amd64 | ||
uri: https://github.com/bedirhangull/kubectl-crashwatch/releases/download/v1.0.6/kubectl-crashwatch_darwin_amd64.tar.gz | ||
sha256: "403934d366ce22833d0c7eed46f4cede9d46e9a24b8268a04ed92f5f196a9114" | ||
files: | ||
- from: "kubectl-crashwatch" | ||
to: "." | ||
- from: LICENSE | ||
to: "." | ||
bin: "kubectl-crashwatch" | ||
|
||
- selector: | ||
matchLabels: | ||
os: windows | ||
arch: amd64 | ||
uri: https://github.com/bedirhangull/kubectl-crashwatch/releases/download/v1.0.6/kubectl-crashwatch_windows_amd64.zip | ||
sha256: "d7977a4f8492c332c951c86515558208acc63fe6a95f3c09eca976f71520f0d4" | ||
files: | ||
- from: "kubectl-crashwatch.exe" | ||
to: "." | ||
- from: LICENSE | ||
to: "." | ||
bin: "kubectl-crashwatch.exe" | ||
|
||
shortDescription: Monitor CrashLoopBackOff pods | ||
homepage: https://github.com/bedirhangull/kubectl-crashwatch | ||
caveats: | | ||
Usage: | ||
$ kubectl crashwatch | ||
For additional options: | ||
$ kubectl crashwatch --help | ||
or visit the documentation at https://github.com/bedirhangull/kubectl-crashwatch/blob/v1.0.6/README.md | ||
description: | | ||
Crashwatch is a kubectl plugin designed to help users monitor and log all pods | ||
that are in a CrashLoopBackOff state within a Kubernetes cluster. Users can also | ||
view these pods in a dashboard for easier monitoring and troubleshooting. |