mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-08-27 00:37:20 +00:00
* feat(host_analyzer): add host sysctl analyzer * chore: add e2e tests to support bundle collection * chore: missing spec e2e test update * chore: cleanup remote collector and use parse operator * chore: update schemas
36 lines
743 B
YAML
36 lines
743 B
YAML
apiVersion: troubleshoot.sh/v1beta2
|
|
kind: SupportBundle
|
|
metadata:
|
|
name: "remote-host-collectors"
|
|
spec:
|
|
runHostCollectorsInPod: true
|
|
hostCollectors:
|
|
- ipv4Interfaces: {}
|
|
- hostServices: {}
|
|
- cpu: {}
|
|
- hostOS: {}
|
|
- memory: {}
|
|
- blockDevices: {}
|
|
- kernelConfigs: {}
|
|
- sysctl: {}
|
|
- copy:
|
|
collectorName: etc-resolv
|
|
path: /etc/resolv.conf
|
|
- dns:
|
|
collectorName: replicated-app-resolve
|
|
hostnames:
|
|
- replicated.app
|
|
- diskUsage:
|
|
collectorName: root-disk-usage
|
|
path: /
|
|
- diskUsage:
|
|
collectorName: tmp
|
|
path: /tmp
|
|
- http:
|
|
collectorName: get-replicated-app
|
|
get:
|
|
url: https://replicated.app
|
|
- run:
|
|
collectorName: uptime
|
|
command: uptime
|