You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem occurs because, with hostNetwork enabled, k.Name is incorrectly set to the node's name instead of the Pod's name, causing the Pod lookup to fail.
Expected Behavior
Even with hostNetwork: true enabled, the code should correctly identify and use the Pod's name to avoid this type of error.
The text was updated successfully, but these errors were encountered:
Problem Description
When I deploy using Helm and set hostNetwork: true, the Pod encounters an error during execution:
<pod_name>
is actually the name of the node.Upon investigation, I found that the issue arises in the following code snippet:
The problem occurs because, with hostNetwork enabled, k.Name is incorrectly set to the node's name instead of the Pod's name, causing the Pod lookup to fail.
Expected Behavior
Even with hostNetwork: true enabled, the code should correctly identify and use the Pod's name to avoid this type of error.
The text was updated successfully, but these errors were encountered: