mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
83 lines
2.4 KiB
Go
83 lines
2.4 KiB
Go
package analyzer
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
troubleshootv1beta2 "github.com/replicatedhq/troubleshoot/pkg/apis/troubleshoot/v1beta2"
|
|
"github.com/replicatedhq/troubleshoot/pkg/constants"
|
|
apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
|
|
)
|
|
|
|
type AnalyzeCustomResourceDefinition struct {
|
|
analyzer *troubleshootv1beta2.CustomResourceDefinition
|
|
}
|
|
|
|
func (a *AnalyzeCustomResourceDefinition) Title() string {
|
|
title := a.analyzer.CheckName
|
|
if title == "" {
|
|
title = fmt.Sprintf("Custom resource definition %s", a.analyzer.CustomResourceDefinitionName)
|
|
}
|
|
|
|
return title
|
|
}
|
|
|
|
func (a *AnalyzeCustomResourceDefinition) IsExcluded() (bool, error) {
|
|
return isExcluded(a.analyzer.Exclude)
|
|
}
|
|
|
|
func (a *AnalyzeCustomResourceDefinition) Analyze(getFile getCollectedFileContents, findFiles getChildCollectedFileContents) ([]*AnalyzeResult, error) {
|
|
result, err := a.analyzeCustomResourceDefinition(a.analyzer, getFile)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
result.Strict = a.analyzer.Strict.BoolOrDefaultFalse()
|
|
return []*AnalyzeResult{result}, nil
|
|
}
|
|
|
|
func (a *AnalyzeCustomResourceDefinition) analyzeCustomResourceDefinition(analyzer *troubleshootv1beta2.CustomResourceDefinition, getFile getCollectedFileContents) (*AnalyzeResult, error) {
|
|
crdData, err := getFile(fmt.Sprintf("%s/%s.json", constants.CLUSTER_RESOURCES_DIR, constants.CLUSTER_RESOURCES_CUSTOM_RESOURCE_DEFINITIONS))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var crds apiextensionsv1beta1.CustomResourceDefinitionList
|
|
if err := json.Unmarshal(crdData, &crds); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
result := AnalyzeResult{
|
|
Title: a.Title(),
|
|
IconKey: "kubernetes_custom_resource_definition",
|
|
IconURI: "https://troubleshoot.sh/images/analyzer-icons/custom-resource-definition.svg?w=13&h=16",
|
|
}
|
|
|
|
for _, crd := range crds.Items {
|
|
if crd.Name == analyzer.CustomResourceDefinitionName {
|
|
result.IsPass = true
|
|
for _, outcome := range analyzer.Outcomes {
|
|
if outcome.Pass != nil {
|
|
result.Message = outcome.Pass.Message
|
|
result.URI = outcome.Pass.URI
|
|
}
|
|
}
|
|
|
|
return &result, nil
|
|
}
|
|
}
|
|
|
|
for _, outcome := range analyzer.Outcomes {
|
|
if outcome.Fail != nil {
|
|
result.IsFail = true
|
|
result.Message = outcome.Fail.Message
|
|
result.URI = outcome.Fail.URI
|
|
} else if outcome.Warn != nil {
|
|
result.IsWarn = true
|
|
result.Message = outcome.Warn.Message
|
|
result.URI = outcome.Warn.URI
|
|
}
|
|
}
|
|
|
|
return &result, nil
|
|
}
|