From 35fd9e833107f4f38642a9843542b433006384f3 Mon Sep 17 00:00:00 2001 From: Andrew Melis Date: Wed, 3 Feb 2021 17:43:51 -0500 Subject: [PATCH] Remove duplicate link in container/securityContext Two links were listed to provide more info about security context in the container documentation. One of the links now permanently redirects to the other (301 status code). This change removes the outdated link. --- staging/src/k8s.io/api/core/v1/types.go | 1 - 1 file changed, 1 deletion(-) diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go index 59feb2d74ad..b6f5629b621 100644 --- a/staging/src/k8s.io/api/core/v1/types.go +++ b/staging/src/k8s.io/api/core/v1/types.go @@ -2318,7 +2318,6 @@ type Container struct { // +optional ImagePullPolicy PullPolicy `json:"imagePullPolicy,omitempty" protobuf:"bytes,14,opt,name=imagePullPolicy,casttype=PullPolicy"` // Security options the pod should run with. - // More info: https://kubernetes.io/docs/concepts/policy/security-context/ // More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ // +optional SecurityContext *SecurityContext `json:"securityContext,omitempty" protobuf:"bytes,15,opt,name=securityContext"`