Skip to content

Commit

Permalink
Merge branch 'main' into fix/custom-analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexsJones committed Jul 15, 2024
2 parents f42b76d + 4366ad9 commit 9312a06
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/analyzer/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ func (NodeAnalyzer) Analyze(a common.Analyzer) ([]common.Result, error) {
break
}
failures = addNodeConditionFailure(failures, node.Name, nodeCondition)
// k3s `EtcdIsVoter`` should not be reported as an error
case v1.NodeConditionType("EtcdIsVoter"):
break
default:
if nodeCondition.Status != v1.ConditionFalse {
failures = addNodeConditionFailure(failures, node.Name, nodeCondition)
Expand Down

0 comments on commit 9312a06

Please sign in to comment.