mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
Have all in-cluster analysers implement the same interface. This will help with the implementation of code that requires making calls to all analysers Fixes #995
98 lines
2.3 KiB
Go
98 lines
2.3 KiB
Go
package analyzer
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
troubleshootv1beta2 "github.com/replicatedhq/troubleshoot/pkg/apis/troubleshoot/v1beta2"
|
|
"github.com/replicatedhq/troubleshoot/pkg/collect"
|
|
)
|
|
|
|
type AnalyzeSecret struct {
|
|
analyzer *troubleshootv1beta2.AnalyzeSecret
|
|
}
|
|
|
|
func (a *AnalyzeSecret) Title() string {
|
|
title := a.analyzer.CheckName
|
|
if title == "" {
|
|
title = fmt.Sprintf("Secret %s", a.analyzer.SecretName)
|
|
}
|
|
|
|
return title
|
|
}
|
|
|
|
func (a *AnalyzeSecret) IsExcluded() (bool, error) {
|
|
return isExcluded(a.analyzer.Exclude)
|
|
}
|
|
|
|
func (a *AnalyzeSecret) Analyze(getFile getCollectedFileContents, findFiles getChildCollectedFileContents) ([]*AnalyzeResult, error) {
|
|
result, err := a.analyzeSecret(a.analyzer, getFile)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
result.Strict = a.analyzer.Strict.BoolOrDefaultFalse()
|
|
return []*AnalyzeResult{result}, nil
|
|
}
|
|
|
|
func (a *AnalyzeSecret) analyzeSecret(analyzer *troubleshootv1beta2.AnalyzeSecret, getCollectedFileContents func(string) ([]byte, error)) (*AnalyzeResult, error) {
|
|
filename := collect.GetSecretFileName(
|
|
&troubleshootv1beta2.Secret{
|
|
Namespace: analyzer.Namespace,
|
|
Name: analyzer.SecretName,
|
|
Key: analyzer.Key,
|
|
},
|
|
analyzer.SecretName,
|
|
)
|
|
|
|
secretData, err := getCollectedFileContents(filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var foundSecret collect.SecretOutput
|
|
if err := json.Unmarshal(secretData, &foundSecret); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
result := AnalyzeResult{
|
|
Title: a.Title(),
|
|
IconKey: "kubernetes_analyze_secret",
|
|
IconURI: "https://troubleshoot.sh/images/analyzer-icons/secret.svg?w=13&h=16",
|
|
}
|
|
|
|
var failOutcome *troubleshootv1beta2.Outcome
|
|
for _, outcome := range analyzer.Outcomes {
|
|
if outcome.Fail != nil {
|
|
failOutcome = outcome
|
|
}
|
|
}
|
|
|
|
if !foundSecret.SecretExists {
|
|
result.IsFail = true
|
|
result.Message = failOutcome.Fail.Message
|
|
result.URI = failOutcome.Fail.URI
|
|
|
|
return &result, nil
|
|
}
|
|
|
|
if analyzer.Key != "" {
|
|
if foundSecret.Key != analyzer.Key || !foundSecret.KeyExists {
|
|
result.IsFail = true
|
|
result.Message = failOutcome.Fail.Message
|
|
result.URI = failOutcome.Fail.URI
|
|
|
|
return &result, nil
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|