func getMarkerScanners(logsCommandName, securityPolicyCommandFormat, setProbeCommandName string) []osgraph.MarkerScanner { return []osgraph.MarkerScanner{ func(g osgraph.Graph, f osgraph.Namer) []osgraph.Marker { return kubeanalysis.FindRestartingPods(g, f, logsCommandName, securityPolicyCommandFormat) }, kubeanalysis.FindDuelingReplicationControllers, kubeanalysis.FindMissingSecrets, kubeanalysis.FindHPASpecsMissingCPUTargets, kubeanalysis.FindHPASpecsMissingScaleRefs, kubeanalysis.FindOverlappingHPAs, buildanalysis.FindUnpushableBuildConfigs, buildanalysis.FindCircularBuilds, buildanalysis.FindPendingTags, deployanalysis.FindDeploymentConfigTriggerErrors, buildanalysis.FindMissingInputImageStreams, func(g osgraph.Graph, f osgraph.Namer) []osgraph.Marker { return deployanalysis.FindDeploymentConfigReadinessWarnings(g, f, setProbeCommandName) }, routeanalysis.FindPortMappingIssues, routeanalysis.FindMissingTLSTerminationType, routeanalysis.FindPathBasedPassthroughRoutes, routeanalysis.FindRouteAdmissionFailures, routeanalysis.FindMissingRouter, // We disable this feature by default and we don't have a capability detection for this sort of thing. Disable this check for now. // kubeanalysis.FindUnmountableSecrets, } }
func getMarkerScanners(logsCommandName, securityPolicyCommandFormat string) []osgraph.MarkerScanner { return []osgraph.MarkerScanner{ func(g osgraph.Graph, f osgraph.Namer) []osgraph.Marker { return kubeanalysis.FindRestartingPods(g, f, logsCommandName, securityPolicyCommandFormat) }, kubeanalysis.FindDuelingReplicationControllers, kubeanalysis.FindMissingSecrets, buildanalysis.FindUnpushableBuildConfigs, buildanalysis.FindCircularBuilds, buildanalysis.FindPendingTags, deployanalysis.FindDeploymentConfigTriggerErrors, routeanalysis.FindMissingPortMapping, routeanalysis.FindMissingTLSTerminationType, routeanalysis.FindPathBasedPassthroughRoutes, // We disable this feature by default and we don't have a capability detection for this sort of thing. Disable this check for now. // kubeanalysis.FindUnmountableSecrets, } }