From 325de63e79ad2cbde46555c819093ac81bb38e36 Mon Sep 17 00:00:00 2001 From: misakazhou Date: Thu, 29 Aug 2019 08:35:16 +0800 Subject: [PATCH] Fix broken link to api-conventions doc. Signed-off-by: misakazhou Kubernetes-commit: f0323a2030c7adae0e0965a7d3b455dd416472a0 --- scale/scheme/types.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scale/scheme/types.go b/scale/scheme/types.go index 13aec2b3..5c5d0a6f 100644 --- a/scale/scheme/types.go +++ b/scale/scheme/types.go @@ -28,15 +28,15 @@ import ( // Scale represents a scaling request for a resource. type Scale struct { metav1.TypeMeta - // Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata. + // Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata. // +optional metav1.ObjectMeta - // defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. + // defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. // +optional Spec ScaleSpec - // current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only. + // current status of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Read-only. // +optional Status ScaleStatus }