Skip to content

Commit

Permalink
Filter out docker containers for pods in the kube-system namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Wilkie committed May 5, 2016
1 parent 3e7dd1a commit eafa835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion render/filters.go
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ func IsApplication(n report.Node) bool {
if roleLabel == "system" {
return false
}
namespace, _ := n.Latest.Lookup(kubernetes.Namespace)
namespace, _ := n.Latest.Lookup(docker.LabelPrefix + "io.kubernetes.pod.namespace")
if namespace == "kube-system" {
return false
}
Expand Down

0 comments on commit eafa835

Please sign in to comment.