Skip to content

Commit 15001b5

Browse files
pmalekk8s-publishing-bot
authored andcommitted
fix(api): make LocalObjectReference.Name and HostAlias.IP required (#124553)
* fix(api): LocalObjectReference Name a "" default and make HostAlias.IP required * chore(api): add LocalObjectReference comment * chore(api): add omitempty to LocalObjectReference's Name * chore(api): add kubebuilder:default annotation * chore(api): ./hack/update-codegen.sh Kubernetes-commit: 37e7cbdd3a6e9dd1044408b157226c53c76fdf71
1 parent d014286 commit 15001b5

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

core/v1/generated.proto

+8-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/v1/types.go

+9-2
Original file line numberDiff line numberDiff line change
@@ -4113,7 +4113,8 @@ const (
41134113
// pod's hosts file.
41144114
type HostAlias struct {
41154115
// IP address of the host file entry.
4116-
IP string `json:"ip,omitempty" protobuf:"bytes,1,opt,name=ip"`
4116+
// +required
4117+
IP string `json:"ip" protobuf:"bytes,1,opt,name=ip"`
41174118
// Hostnames for the above IP address.
41184119
// +listType=atomic
41194120
Hostnames []string `json:"hostnames,omitempty" protobuf:"bytes,2,rep,name=hostnames"`
@@ -6553,9 +6554,15 @@ type ObjectReference struct {
65536554
// +structType=atomic
65546555
type LocalObjectReference struct {
65556556
// Name of the referent.
6556-
// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
6557+
// This field is effectively required, but due to backwards compatibility is
6558+
// allowed to be empty. Instances of this type with an empty value here are
6559+
// almost certainly wrong.
65576560
// TODO: Add other useful fields. apiVersion, kind, uid?
6561+
// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
65586562
// +optional
6563+
// +default=""
6564+
// +kubebuilder:default=""
6565+
// TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.
65596566
Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
65606567
}
65616568

core/v1/types_swagger_doc_generated.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1032,7 +1032,7 @@ func (LoadBalancerStatus) SwaggerDoc() map[string]string {
10321032

10331033
var map_LocalObjectReference = map[string]string{
10341034
"": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
1035-
"name": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
1035+
"name": "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
10361036
}
10371037

10381038
func (LocalObjectReference) SwaggerDoc() map[string]string {

0 commit comments

Comments
 (0)