Skip to content

Commit 515464e

Browse files
committed
Update types.go
1 parent a7c2901 commit 515464e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

common/types.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ type BaseComponentStatefulSet interface {
175175
GetAnnotations() map[string]string
176176
}
177177

178-
// This struct is taken from the Probe implementation in https://github.com/kubernetes/api/blob/v0.24.2/core/v1/types.go
178+
// This struct is taken from the Probe specification in https://github.com/kubernetes/api/blob/v0.24.2/core/v1/types.go
179179
// +kubebuilder:object:generate=true
180180
type BaseComponentProbe struct {
181181
// The action taken to determine the health of a container
@@ -215,7 +215,7 @@ type BaseComponentProbe struct {
215215
TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty"`
216216
}
217217

218-
// This struct is taken from the ProbeHandler implementation in https://github.com/kubernetes/api/blob/v0.24.2/core/v1/types.go
218+
// This struct is taken from the ProbeHandler specification in https://github.com/kubernetes/api/blob/v0.24.2/core/v1/types.go
219219
// +kubebuilder:object:generate=true
220220
type BaseComponentProbeHandler struct {
221221
// Exec specifies the action to take.
@@ -235,7 +235,7 @@ type BaseComponentProbeHandler struct {
235235
GRPC *corev1.GRPCAction `json:"grpc,omitempty"`
236236
}
237237

238-
// This struct is based upon the HTTPGetAction implementation in https://github.com/kubernetes/api/blob/v0.24.2/core/v1/types.go
238+
// This struct is based upon the HTTPGetAction specification in https://github.com/kubernetes/api/blob/v0.24.2/core/v1/types.go
239239
// +kubebuilder:object:generate=true
240240
type OptionalHTTPGetAction struct {
241241
// Path to access on the HTTP server.

0 commit comments

Comments
 (0)