Merge pull request #126057 from thockin/make-pod-ip-host-ip-required

make PodIP.IP and HostIP.IP required.
This commit is contained in:
Kubernetes Prow Robot
2024-07-12 17:17:01 -07:00
committed by GitHub
6 changed files with 26 additions and 2 deletions

View File

@@ -23024,11 +23024,13 @@ func schema_k8sio_api_core_v1_HostIP(ref common.ReferenceCallback) common.OpenAP
"ip": {
SchemaProps: spec.SchemaProps{
Description: "IP is the IP address assigned to the host",
Default: "",
Type: []string{"string"},
Format: "",
},
},
},
Required: []string{"ip"},
},
},
}
@@ -26744,11 +26746,13 @@ func schema_k8sio_api_core_v1_PodIP(ref common.ReferenceCallback) common.OpenAPI
"ip": {
SchemaProps: spec.SchemaProps{
Description: "IP is the IP address assigned to the pod",
Default: "",
Type: []string{"string"},
Format: "",
},
},
},
Required: []string{"ip"},
},
},
}