mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
18 lines
297 B
Go
18 lines
297 B
Go
package analyzer
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed files/deployments/default.json
|
|
var defaultDeployments string
|
|
|
|
//go:embed files/nodes.json
|
|
var collectedNodes string
|
|
|
|
//go:embed files/jobs/test.json
|
|
var testJobs string
|
|
|
|
//go:embed files/replicasets/rook-ceph.json
|
|
var rookCephReplicaSets string
|