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
- incorporated changes from PR #3468 to allow for arbitrary annotations
to be used no matter the hostNetwork property's value
- updated docs to make clear how the annotations are used for pods
Copy file name to clipboardExpand all lines: docs/annotations/annotations.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,8 @@ Specifies the domain for the resource's DNS records.
64
64
Multiple hostnames can be specified through a comma-separated list, e.g.
65
65
`svc.mydomain1.com,svc.mydomain2.com`.
66
66
67
+
For `Pods`, uses the `Pod`'s `Status.PodIP`, unless they are `hostNetwork: true` in which case the NodeExternalIP is used for IPv4 and NodeInternalIP for IPv6.
Specifies where to get the domain for an `Ingress` resource.
@@ -80,7 +82,7 @@ Specifies the domain for the resource's DNS records that are for use from intern
80
82
81
83
For `Services` of type `LoadBalancer`, uses the `Service`'s `ClusterIP`.
82
84
83
-
For `Pods`, uses the `Pod`'s `Status.PodIP`.
85
+
For `Pods`, uses the `Pod`'s `Status.PodIP`, unless they are `hostNetwork: true` in which case the NodeExternalIP is used for IPv4 and NodeInternalIP for IPv6.
0 commit comments