Merge pull request #99329 from chymy/linkcheck-404

Fix link 404
This commit is contained in:
Kubernetes Prow Robot 2022-01-04 11:26:39 -08:00 committed by GitHub
commit 6d0913fb4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,15 +60,15 @@ const (
type FlowSchema struct { type FlowSchema struct {
metav1.TypeMeta metav1.TypeMeta
// `metadata` is the standard object's metadata. // `metadata` is the standard object's metadata.
// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
// +optional // +optional
metav1.ObjectMeta metav1.ObjectMeta
// `spec` is the specification of the desired behavior of a FlowSchema. // `spec` is the specification of the desired behavior of a FlowSchema.
// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
// +optional // +optional
Spec FlowSchemaSpec Spec FlowSchemaSpec
// `status` is the current status of a FlowSchema. // `status` is the current status of a FlowSchema.
// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
// +optional // +optional
Status FlowSchemaStatus Status FlowSchemaStatus
} }
@ -79,7 +79,7 @@ type FlowSchema struct {
type FlowSchemaList struct { type FlowSchemaList struct {
metav1.TypeMeta metav1.TypeMeta
// `metadata` is the standard list metadata. // `metadata` is the standard list metadata.
// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
// +optional // +optional
metav1.ListMeta metav1.ListMeta
@ -330,15 +330,15 @@ type FlowSchemaConditionType string
type PriorityLevelConfiguration struct { type PriorityLevelConfiguration struct {
metav1.TypeMeta metav1.TypeMeta
// `metadata` is the standard object's metadata. // `metadata` is the standard object's metadata.
// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
// +optional // +optional
metav1.ObjectMeta metav1.ObjectMeta
// `spec` is the specification of the desired behavior of a "request-priority". // `spec` is the specification of the desired behavior of a "request-priority".
// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
// +optional // +optional
Spec PriorityLevelConfigurationSpec Spec PriorityLevelConfigurationSpec
// `status` is the current status of a "request-priority". // `status` is the current status of a "request-priority".
// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
// +optional // +optional
Status PriorityLevelConfigurationStatus Status PriorityLevelConfigurationStatus
} }
@ -349,7 +349,7 @@ type PriorityLevelConfiguration struct {
type PriorityLevelConfigurationList struct { type PriorityLevelConfigurationList struct {
metav1.TypeMeta metav1.TypeMeta
// `metadata` is the standard object's metadata. // `metadata` is the standard object's metadata.
// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
// +optional // +optional
metav1.ListMeta metav1.ListMeta
// `items` is a list of request-priorities. // `items` is a list of request-priorities.