Merge pull request #29042 from dims/fixup-imports

Automatic merge from submit-queue

Use Go canonical import paths

Add canonical imports only in existing doc.go files.
https://golang.org/doc/go1.4#canonicalimports

Fixes #29014
This commit is contained in:
k8s-merge-robot
2016-07-18 07:23:38 -07:00
committed by GitHub
280 changed files with 280 additions and 280 deletions

View File

@@ -25,4 +25,4 @@ limitations under the License.
// but for now this admission controller provides a simple protection,
// on the assumption that the only legitimate use of hard pod anti-affinity
// is to exclude other pods from the same node.
package antiaffinity
package antiaffinity // import "k8s.io/kubernetes/plugin/pkg/admission/antiaffinity"

View File

@@ -16,4 +16,4 @@ limitations under the License.
// labels created persistent volumes with zone information
// as provided by the cloud provider
package label
package label // import "k8s.io/kubernetes/plugin/pkg/admission/persistentvolume/label"

View File

@@ -16,4 +16,4 @@ limitations under the License.
// resourcequota enforces all incoming requests against any applied quota
// in the namespace context of the request
package resourcequota
package resourcequota // import "k8s.io/kubernetes/plugin/pkg/admission/resourcequota"

View File

@@ -15,4 +15,4 @@ limitations under the License.
*/
// security contains admission plugins specific to cluster security.
package security
package security // import "k8s.io/kubernetes/plugin/pkg/admission/security"

View File

@@ -16,4 +16,4 @@ limitations under the License.
// serviceaccount enforces all pods having an associated serviceaccount,
// and all containers mounting the API token for that serviceaccount at a known location
package serviceaccount
package serviceaccount // import "k8s.io/kubernetes/plugin/pkg/admission/serviceaccount"

View File

@@ -15,4 +15,4 @@ limitations under the License.
*/
// Package authenticator contains implementations for pkg/auth/authenticator interfaces
package authenticator
package authenticator // import "k8s.io/kubernetes/plugin/pkg/auth/authenticator"

View File

@@ -15,4 +15,4 @@ limitations under the License.
*/
// Package password contains authenticator.Password implementations
package password
package password // import "k8s.io/kubernetes/plugin/pkg/auth/authenticator/password"

View File

@@ -17,4 +17,4 @@ limitations under the License.
// Package keystone provides authentication via keystone.
// For details about keystone and how to use the plugin, refer to
// https://github.com/kubernetes/kubernetes.github.io/blob/master/docs/admin/authentication.md
package keystone
package keystone // import "k8s.io/kubernetes/plugin/pkg/auth/authenticator/password/keystone"

View File

@@ -16,4 +16,4 @@ limitations under the License.
// Package x509 provides a request authenticator that validates and
// extracts user information from client certificates
package x509
package x509 // import "k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/x509"

View File

@@ -15,4 +15,4 @@ limitations under the License.
*/
// Package authorizer contains implementations for pkg/auth/authorizer interfaces
package authorizer
package authorizer // import "k8s.io/kubernetes/plugin/pkg/auth/authorizer"

View File

@@ -15,4 +15,4 @@ limitations under the License.
*/
// Package auth contains implementations for interfaces in the pkg/auth package
package auth
package auth // import "k8s.io/kubernetes/plugin/pkg/auth"

View File

@@ -16,4 +16,4 @@ limitations under the License.
// Package scheduler contains a generic Scheduler interface and several
// implementations.
package algorithm
package algorithm // import "k8s.io/kubernetes/plugin/pkg/scheduler/algorithm"