-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[k8sprocessor] implicit dependencies between owner metadata #512
Comments
andrzej-stencel
added a commit
that referenced
this issue
Mar 31, 2022
andrzej-stencel
added a commit
that referenced
this issue
Mar 31, 2022
andrzej-stencel
added a commit
that referenced
this issue
Mar 31, 2022
andrzej-stencel
added a commit
that referenced
this issue
Mar 31, 2022
andrzej-stencel
added a commit
that referenced
this issue
Apr 1, 2022
andrzej-stencel
added a commit
that referenced
this issue
Apr 1, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OT distro version: 0.0.57-beta.0
Steps to reproduce
k8s_tagger
processor withowner_lookup_enabled: true
and with extract metadata section that includesdeploumentName
but does not includereplicaSetName
, and withcronJobName
but withoutjobName
.Actual result
Expected result
k8s.deployment.name
k8s.cronjob.name
How to fix
This is because the Pods that belong to a Deployment actually belong to a ReplicaSet, and that ReplicaSet belongs to the Deployment. With the above configuration, currently the ReplicaSet information is not retrieved from k8s API server, which it should be when the Deployment extraction is defined.
Same with CronJob - Job - Pod hierarchy.
The text was updated successfully, but these errors were encountered: