We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1550f2 commit 1f8ffbbCopy full SHA for 1f8ffbb
crd/multitenancy/api/v1alpha1/multitenantpodnetworkconfig.go
@@ -105,6 +105,13 @@ type MultitenantPodNetworkConfigStatus struct {
105
// DefaultDenyACL bool indicates whether default deny policy will be present on the pods upon pod creation
106
// +kubebuilder:validation:Optional
107
DefaultDenyACL bool `json:"defaultDenyACL"`
108
+ // NodeName is the name of the node where the pod is scheduled
109
+ // +kubebuilder:validation:Optional
110
+ NodeName string `json:"nodeName,omitempty"`
111
+ // PodName is the name of the pod
112
+ PodName string `json:"podName,omitempty"`
113
+ // PodUID is the uid of the pod
114
+ PodUID string `json:"podUID,omitempty"`
115
}
116
117
func init() {
0 commit comments