Browse Source

feat(discovery/kubernetes): include InitContainers

Includes InitContainers in the ServiceDiscovery

Signed-off-by: sh0rez <me@shorez.de>
pull/5598/head
sh0rez 6 years ago
parent
commit
bea07fe866
No known key found for this signature in database
GPG Key ID: 87C71DF9F8181FF1
  1. 3
      discovery/kubernetes/pod.go

3
discovery/kubernetes/pod.go

@ -213,7 +213,8 @@ func (p *Pod) buildPod(pod *apiv1.Pod) *targetgroup.Group {
tg.Labels = podLabels(pod)
tg.Labels[namespaceLabel] = lv(pod.Namespace)
for _, c := range pod.Spec.Containers {
containers := append(pod.Spec.Containers, pod.Spec.InitContainers...)
for _, c := range containers {
// If no ports are defined for the container, create an anonymous
// target per container.
if len(c.Ports) == 0 {

Loading…
Cancel
Save