Skip to content

Commit cbaf5a0

Browse files
Merge pull request #128686 from thockin/take_over_pr-125233
Add missing comments in k8s.io/api/core/v1 Kubernetes-commit: 6db94779e462abaf63ce08d1107bd9bc1e446a52
2 parents a503a4f + 4063a68 commit cbaf5a0

File tree

3 files changed

+70
-35
lines changed

3 files changed

+70
-35
lines changed

core/v1/generated.proto

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

core/v1/types.go

+24-13
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,7 @@ type PersistentVolumeClaimSpec struct {
630630
VolumeAttributesClassName *string `json:"volumeAttributesClassName,omitempty" protobuf:"bytes,9,opt,name=volumeAttributesClassName"`
631631
}
632632

633+
// TypedObjectReference contains enough information to let you locate the typed referenced object
633634
type TypedObjectReference struct {
634635
// APIGroup is the group for the resource being referenced.
635636
// If APIGroup is not specified, the specified Kind must be in the core API group.
@@ -736,8 +737,13 @@ type ModifyVolumeStatus struct {
736737

737738
// PersistentVolumeClaimCondition contains details about state of pvc
738739
type PersistentVolumeClaimCondition struct {
739-
Type PersistentVolumeClaimConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=PersistentVolumeClaimConditionType"`
740-
Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
740+
// Type is the type of the condition.
741+
// More info: https://kubernetes.io/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/#:~:text=set%20to%20%27ResizeStarted%27.-,PersistentVolumeClaimCondition,-contains%20details%20about
742+
Type PersistentVolumeClaimConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=PersistentVolumeClaimConditionType"`
743+
// Status is the status of the condition.
744+
// Can be True, False, Unknown.
745+
// More info: https://kubernetes.io/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/#:~:text=state%20of%20pvc-,conditions.status,-(string)%2C%20required
746+
Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
741747
// lastProbeTime is the time we probed the condition.
742748
// +optional
743749
LastProbeTime metav1.Time `json:"lastProbeTime,omitempty" protobuf:"bytes,3,opt,name=lastProbeTime"`
@@ -2524,6 +2530,7 @@ type TCPSocketAction struct {
25242530
Host string `json:"host,omitempty" protobuf:"bytes,2,opt,name=host"`
25252531
}
25262532

2533+
// GRPCAction specifies an action involving a GRPC service.
25272534
type GRPCAction struct {
25282535
// Port number of the gRPC service. Number must be in the range 1 to 65535.
25292536
Port int32 `json:"port" protobuf:"bytes,1,opt,name=port"`
@@ -2939,36 +2946,35 @@ type Container struct {
29392946
// ProbeHandler defines a specific action that should be taken in a probe.
29402947
// One and only one of the fields must be specified.
29412948
type ProbeHandler struct {
2942-
// Exec specifies the action to take.
2949+
// Exec specifies a command to execute in the container.
29432950
// +optional
29442951
Exec *ExecAction `json:"exec,omitempty" protobuf:"bytes,1,opt,name=exec"`
2945-
// HTTPGet specifies the http request to perform.
2952+
// HTTPGet specifies an HTTP GET request to perform.
29462953
// +optional
29472954
HTTPGet *HTTPGetAction `json:"httpGet,omitempty" protobuf:"bytes,2,opt,name=httpGet"`
2948-
// TCPSocket specifies an action involving a TCP port.
2955+
// TCPSocket specifies a connection to a TCP port.
29492956
// +optional
29502957
TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty" protobuf:"bytes,3,opt,name=tcpSocket"`
2951-
2952-
// GRPC specifies an action involving a GRPC port.
2958+
// GRPC specifies a GRPC HealthCheckRequest.
29532959
// +optional
29542960
GRPC *GRPCAction `json:"grpc,omitempty" protobuf:"bytes,4,opt,name=grpc"`
29552961
}
29562962

29572963
// LifecycleHandler defines a specific action that should be taken in a lifecycle
29582964
// hook. One and only one of the fields, except TCPSocket must be specified.
29592965
type LifecycleHandler struct {
2960-
// Exec specifies the action to take.
2966+
// Exec specifies a command to execute in the container.
29612967
// +optional
29622968
Exec *ExecAction `json:"exec,omitempty" protobuf:"bytes,1,opt,name=exec"`
2963-
// HTTPGet specifies the http request to perform.
2969+
// HTTPGet specifies an HTTP GET request to perform.
29642970
// +optional
29652971
HTTPGet *HTTPGetAction `json:"httpGet,omitempty" protobuf:"bytes,2,opt,name=httpGet"`
29662972
// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
2967-
// for the backward compatibility. There are no validation of this field and
2968-
// lifecycle hooks will fail in runtime when tcp handler is specified.
2973+
// for backward compatibility. There is no validation of this field and
2974+
// lifecycle hooks will fail at runtime when it is specified.
29692975
// +optional
29702976
TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty" protobuf:"bytes,3,opt,name=tcpSocket"`
2971-
// Sleep represents the duration that the container should sleep before being terminated.
2977+
// Sleep represents a duration that the container should sleep.
29722978
// +featureGate=PodLifecycleSleepAction
29732979
// +optional
29742980
Sleep *SleepAction `json:"sleep,omitempty" protobuf:"bytes,4,opt,name=sleep"`
@@ -3150,6 +3156,7 @@ type ContainerStatus struct {
31503156
AllocatedResourcesStatus []ResourceStatus `json:"allocatedResourcesStatus,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,14,rep,name=allocatedResourcesStatus"`
31513157
}
31523158

3159+
// ResourceStatus represents the status of a single resource allocated to a Pod.
31533160
type ResourceStatus struct {
31543161
// Name of the resource. Must be unique within the pod and in case of non-DRA resource, match one of the resources from the pod spec.
31553162
// For DRA resources, the value must be "claim:<claim_name>/<request>".
@@ -4605,8 +4612,10 @@ type PodDNSConfig struct {
46054612

46064613
// PodDNSConfigOption defines DNS resolver options of a pod.
46074614
type PodDNSConfigOption struct {
4615+
// Name is this DNS resolver option's name.
46084616
// Required.
46094617
Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
4618+
// Value is this DNS resolver option's value.
46104619
// +optional
46114620
Value *string `json:"value,omitempty" protobuf:"bytes,2,opt,name=value"`
46124621
}
@@ -6570,10 +6579,13 @@ type NamespaceCondition struct {
65706579
Type NamespaceConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=NamespaceConditionType"`
65716580
// Status of the condition, one of True, False, Unknown.
65726581
Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
6582+
// Last time the condition transitioned from one status to another.
65736583
// +optional
65746584
LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,4,opt,name=lastTransitionTime"`
6585+
// Unique, one-word, CamelCase reason for the condition's last transition.
65756586
// +optional
65766587
Reason string `json:"reason,omitempty" protobuf:"bytes,5,opt,name=reason"`
6588+
// Human-readable message indicating details about last transition.
65776589
// +optional
65786590
Message string `json:"message,omitempty" protobuf:"bytes,6,opt,name=message"`
65796591
}
@@ -7886,7 +7898,6 @@ const (
78867898
)
78877899

78887900
// PortStatus represents the error condition of a service port
7889-
78907901
type PortStatus struct {
78917902
// Port is the port number of the service port of which status is recorded here
78927903
Port int32 `json:"port" protobuf:"varint,1,opt,name=port"`

core/v1/types_swagger_doc_generated.go

+23-13
Original file line numberDiff line numberDiff line change
@@ -802,6 +802,7 @@ func (GCEPersistentDiskVolumeSource) SwaggerDoc() map[string]string {
802802
}
803803

804804
var map_GRPCAction = map[string]string{
805+
"": "GRPCAction specifies an action involving a GRPC service.",
805806
"port": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
806807
"service": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.",
807808
}
@@ -967,10 +968,10 @@ func (Lifecycle) SwaggerDoc() map[string]string {
967968

968969
var map_LifecycleHandler = map[string]string{
969970
"": "LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.",
970-
"exec": "Exec specifies the action to take.",
971-
"httpGet": "HTTPGet specifies the http request to perform.",
972-
"tcpSocket": "Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.",
973-
"sleep": "Sleep represents the duration that the container should sleep before being terminated.",
971+
"exec": "Exec specifies a command to execute in the container.",
972+
"httpGet": "HTTPGet specifies an HTTP GET request to perform.",
973+
"tcpSocket": "Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for backward compatibility. There is no validation of this field and lifecycle hooks will fail at runtime when it is specified.",
974+
"sleep": "Sleep represents a duration that the container should sleep.",
974975
}
975976

976977
func (LifecycleHandler) SwaggerDoc() map[string]string {
@@ -1104,9 +1105,12 @@ func (Namespace) SwaggerDoc() map[string]string {
11041105
}
11051106

11061107
var map_NamespaceCondition = map[string]string{
1107-
"": "NamespaceCondition contains details about state of namespace.",
1108-
"type": "Type of namespace controller condition.",
1109-
"status": "Status of the condition, one of True, False, Unknown.",
1108+
"": "NamespaceCondition contains details about state of namespace.",
1109+
"type": "Type of namespace controller condition.",
1110+
"status": "Status of the condition, one of True, False, Unknown.",
1111+
"lastTransitionTime": "Last time the condition transitioned from one status to another.",
1112+
"reason": "Unique, one-word, CamelCase reason for the condition's last transition.",
1113+
"message": "Human-readable message indicating details about last transition.",
11101114
}
11111115

11121116
func (NamespaceCondition) SwaggerDoc() map[string]string {
@@ -1398,6 +1402,8 @@ func (PersistentVolumeClaim) SwaggerDoc() map[string]string {
13981402

13991403
var map_PersistentVolumeClaimCondition = map[string]string{
14001404
"": "PersistentVolumeClaimCondition contains details about state of pvc",
1405+
"type": "Type is the type of the condition. More info: https://kubernetes.io/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/#:~:text=set%20to%20%27ResizeStarted%27.-,PersistentVolumeClaimCondition,-contains%20details%20about",
1406+
"status": "Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/#:~:text=state%20of%20pvc-,conditions.status,-(string)%2C%20required",
14011407
"lastProbeTime": "lastProbeTime is the time we probed the condition.",
14021408
"lastTransitionTime": "lastTransitionTime is the time the condition transitioned from one status to another.",
14031409
"reason": "reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports \"Resizing\" that means the underlying persistent volume is being resized.",
@@ -1634,8 +1640,9 @@ func (PodDNSConfig) SwaggerDoc() map[string]string {
16341640
}
16351641

16361642
var map_PodDNSConfigOption = map[string]string{
1637-
"": "PodDNSConfigOption defines DNS resolver options of a pod.",
1638-
"name": "Required.",
1643+
"": "PodDNSConfigOption defines DNS resolver options of a pod.",
1644+
"name": "Name is this DNS resolver option's name. Required.",
1645+
"value": "Value is this DNS resolver option's value.",
16391646
}
16401647

16411648
func (PodDNSConfigOption) SwaggerDoc() map[string]string {
@@ -1901,6 +1908,7 @@ func (PodTemplateSpec) SwaggerDoc() map[string]string {
19011908
}
19021909

19031910
var map_PortStatus = map[string]string{
1911+
"": "PortStatus represents the error condition of a service port",
19041912
"port": "Port is the port number of the service port of which status is recorded here",
19051913
"protocol": "Protocol is the protocol of the service port of which status is recorded here The supported values are: \"TCP\", \"UDP\", \"SCTP\"",
19061914
"error": "Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use\n CamelCase names\n- cloud provider specific error values must have names that comply with the\n format foo.example.com/CamelCase.",
@@ -1968,10 +1976,10 @@ func (Probe) SwaggerDoc() map[string]string {
19681976

19691977
var map_ProbeHandler = map[string]string{
19701978
"": "ProbeHandler defines a specific action that should be taken in a probe. One and only one of the fields must be specified.",
1971-
"exec": "Exec specifies the action to take.",
1972-
"httpGet": "HTTPGet specifies the http request to perform.",
1973-
"tcpSocket": "TCPSocket specifies an action involving a TCP port.",
1974-
"grpc": "GRPC specifies an action involving a GRPC port.",
1979+
"exec": "Exec specifies a command to execute in the container.",
1980+
"httpGet": "HTTPGet specifies an HTTP GET request to perform.",
1981+
"tcpSocket": "TCPSocket specifies a connection to a TCP port.",
1982+
"grpc": "GRPC specifies a GRPC HealthCheckRequest.",
19751983
}
19761984

19771985
func (ProbeHandler) SwaggerDoc() map[string]string {
@@ -2190,6 +2198,7 @@ func (ResourceRequirements) SwaggerDoc() map[string]string {
21902198
}
21912199

21922200
var map_ResourceStatus = map[string]string{
2201+
"": "ResourceStatus represents the status of a single resource allocated to a Pod.",
21932202
"name": "Name of the resource. Must be unique within the pod and in case of non-DRA resource, match one of the resources from the pod spec. For DRA resources, the value must be \"claim:<claim_name>/<request>\". When this status is reported about a container, the \"claim_name\" and \"request\" must match one of the claims of this container.",
21942203
"resources": "List of unique resources health. Each element in the list contains an unique resource ID and its health. At a minimum, for the lifetime of a Pod, resource ID must uniquely identify the resource allocated to the Pod on the Node. If other Pod on the same Node reports the status with the same resource ID, it must be the same resource they share. See ResourceID type definition for a specific format it has in various use cases.",
21952204
}
@@ -2630,6 +2639,7 @@ func (TypedLocalObjectReference) SwaggerDoc() map[string]string {
26302639
}
26312640

26322641
var map_TypedObjectReference = map[string]string{
2642+
"": "TypedObjectReference contains enough information to let you locate the typed referenced object",
26332643
"apiGroup": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.",
26342644
"kind": "Kind is the type of resource being referenced",
26352645
"name": "Name is the name of resource being referenced",

0 commit comments

Comments
 (0)