mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-02-14 18:29:53 +00:00
79 lines
2.6 KiB
YAML
79 lines
2.6 KiB
YAML
apiVersion: krew.googlecontainertools.github.com/v1alpha2
|
|
kind: Plugin
|
|
metadata:
|
|
name: support-bundle
|
|
spec:
|
|
version: "v0.9.14"
|
|
platforms:
|
|
- selector:
|
|
matchLabels:
|
|
os: linux
|
|
arch: amd64
|
|
uri: https://github.com/replicatedhq/troubleshoot/releases/download/v0.9.14/support-bundle_linux_amd64.tar.gz
|
|
sha256: "81ed16f3e423535f026909df2823f5da9909ec5762a150c76fde94d985d101c7"
|
|
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.14/support-bundle_darwin_amd64.tar.gz
|
|
sha256: "84d2cd6b3d77ed2e8e83cda6f79b553e443acb2cc7cb0099be2a73934dac46f4"
|
|
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.14/support-bundle_windows_amd64.zip
|
|
sha256: "b968d9168ce97c7dc43cb4e043a8d6762c1e231d68f90826a019571f8d450719"
|
|
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/
|