mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
79 lines
2.7 KiB
YAML
79 lines
2.7 KiB
YAML
apiVersion: krew.googlecontainertools.github.com/v1alpha2
|
|
kind: Plugin
|
|
metadata:
|
|
name: support-bundle
|
|
spec:
|
|
version: "v0.9.11"
|
|
platforms:
|
|
- selector:
|
|
matchLabels:
|
|
os: linux
|
|
arch: amd64
|
|
uri: https://github.com/replicatedhq/troubleshoot/releases/download/v0.9.11/support-bundle_0.9.11_linux_amd64-0.9.11.tar.gz
|
|
sha256: "601710ec70a9e9fb68f5395c591f80e72060a9c82eaeee969232a99a44663309"
|
|
files:
|
|
- from: support-bundle
|
|
to: .
|
|
- from: LICENSE
|
|
to: .
|
|
bin: support-bundle
|
|
- selector:
|
|
matchLabels:
|
|
os: darwin
|
|
arch: amd64
|
|
uri: https://github.com/replicatedhq/troubleshoot/releases/download/v0.9.11/support-bundle_0.9.11_darwin_amd64-0.9.11.tar.gz
|
|
sha256: "fe02a8f88013a55c012e7560856e7d4c36a4d13dbf17170208f870cff57ff030"
|
|
files:
|
|
- from: support-bundle
|
|
to: .
|
|
- from: LICENSE
|
|
to: .
|
|
bin: support-bundle
|
|
- selector:
|
|
matchLabels:
|
|
os: windows
|
|
arch: amd64
|
|
uri: https://github.com/replicatedhq/troubleshoot/releases/download/v0.9.11/support-bundle_0.9.11_windows_amd64-0.9.11.zip
|
|
sha256: "fded59fe9e46b61efbd6808f9f4124de542f2e32525e2fd992cf233578aaeaef"
|
|
files:
|
|
- from: support-bundle.exe
|
|
to: .
|
|
- from: LICENSE
|
|
to: .
|
|
bin: support-bundle.exe
|
|
shortDescription: Creates support bundles for off-cluster analysis
|
|
homepage: https://github.com/replicatedhq/troubleshoot
|
|
caveats: |
|
|
Usage:
|
|
$ kubectl support-bundle <uri>
|
|
|
|
where <uri> references a set of application collectors
|
|
|
|
For example:
|
|
|
|
$ kubectl support-bundle https://troubleshoot.replicated.com
|
|
|
|
For additional options:
|
|
$ kubectl support-bundle --help
|
|
|
|
Documentation:
|
|
Full documentation on this plugin is available at:
|
|
https://help.replicated.com/docs/troubleshoot/kubernetes/support-bundle/overview/
|
|
|
|
For application developers writing collectors and analyzers:
|
|
https://help.replicated.com/docs/troubleshoot/kubernetes/collectors/defining-collectors/
|
|
|
|
description: |
|
|
This plugin collects information about the cluster, and automatically
|
|
redacts sensitive data from being collected. This can optionally include
|
|
application-specific data. The plugin writes the collected files into a
|
|
single archive named support-bundle.tar.gz. This archive can be manually
|
|
inspected or uploaded to https://vendor.replicated.com for automated
|
|
analysis.
|
|
|
|
Application developers can create and host a Collector manifest that
|
|
defines information to be collected.
|
|
|
|
For information on creating a Collector manifest, view the documentation
|
|
at https://help.replicated.com/docs/troubleshoot/kubernetes/collectors/defining-collectors/
|