remove import doc comments

The "// import <path>" comment has been superseded by Go modules.
We don't have to remove them, but doing so has some advantages:

- They are used inconsistently, which is confusing.
- We can then also remove the (currently broken) hack/update-vanity-imports.sh.
- Last but not least, it would be a first step towards avoiding the k8s.io domain.

This commit was generated with
   sed -i -e 's;^package \(.*\) // import.*;package \1;' $(git grep -l '^package.*// import' | grep -v 'vendor/')

Everything was included, except for
   package labels // import k8s.io/kubernetes/pkg/util/labels
because that package is marked as "read-only".
This commit is contained in:
Patrick Ohly 2024-12-02 14:43:58 +01:00
parent 95d71c464a
commit 8a908e0c0b
564 changed files with 564 additions and 564 deletions

View File

@ -18,4 +18,4 @@ limitations under the License.
// Package bootstraptoken contains an API and utilities wrapping the
// "bootstrap.kubernetes.io/token" Secret type to ease its usage in kubeadm.
package bootstraptoken // import "k8s.io/kubernetes/cmd/kubeadm/app/apis/bootstraptoken"
package bootstraptoken

View File

@ -19,4 +19,4 @@ limitations under the License.
// Package kubeadm is the package that contains the libraries that drive the kubeadm binary.
// kubeadm is responsible for handling a Kubernetes cluster's lifecycle.
package kubeadm // import "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
package kubeadm

View File

@ -282,4 +282,4 @@ limitations under the License.
// node only (e.g. the node ip).
//
// - APIEndpoint, that represents the endpoint of the instance of the API server to be eventually deployed on this node.
package v1beta3 // import "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta3"
package v1beta3

View File

@ -351,4 +351,4 @@ limitations under the License.
// The UpgradeConfiguration structure includes a few substructures that only apply to different subcommands of "kubeadm upgrade".
// For example, the "apply" substructure will be used with the "kubeadm upgrade apply" subcommand and all other substructures
// will be ignored in such a case.
package v1beta4 // import "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta4"
package v1beta4

View File

@ -21,4 +21,4 @@ limitations under the License.
// The purpose of the kubeadm structured output is to have a well
// defined versioned output format that other software that uses
// kubeadm for cluster deployments can use and rely on.
package output // import "k8s.io/kubernetes/cmd/kubeadm/app/apis/output"
package output

View File

@ -29,4 +29,4 @@ limitations under the License.
// with the CertificateExpirationInfo structure.
// - Introduce a (breaking) change to the UpgradePlan structure used by "kubeadm upgrade plan".
// UpgradePlan now contains a list of AvailableUpgrade structures.
package v1alpha3 // import "k8s.io/kubernetes/cmd/kubeadm/app/apis/output/v1alpha3"
package v1alpha3

View File

@ -19,4 +19,4 @@ limitations under the License.
// +groupName=abac.authorization.kubernetes.io
package v0 // import "k8s.io/kubernetes/pkg/apis/abac/v0"
package v0

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=abac.authorization.kubernetes.io
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/abac/v1beta1"
package v1beta1

View File

@ -17,4 +17,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
// +groupName=admission.k8s.io
package admission // import "k8s.io/kubernetes/pkg/apis/admission"
package admission

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=admission.k8s.io
package v1 // import "k8s.io/kubernetes/pkg/apis/admission/v1"
package v1

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=admission.k8s.io
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/admission/v1beta1"
package v1beta1

View File

@ -21,4 +21,4 @@ limitations under the License.
// AdmissionConfiguration and AdmissionPluginConfiguration are legacy static admission plugin configuration
// ValidatingWebhookConfiguration, and MutatingWebhookConfiguration are for the
// new dynamic admission controller configuration.
package admissionregistration // import "k8s.io/kubernetes/pkg/apis/admissionregistration"
package admissionregistration

View File

@ -24,4 +24,4 @@ limitations under the License.
// AdmissionConfiguration and AdmissionPluginConfiguration are legacy static admission plugin configuration
// ValidatingWebhookConfiguration, and MutatingWebhookConfiguration are for the
// new dynamic admission controller configuration.
package v1 // import "k8s.io/kubernetes/pkg/apis/admissionregistration/v1"
package v1

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=admissionregistration.k8s.io
// Package v1alpha1 is the v1alpha1 version of the API.
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/admissionregistration/v1alpha1"
package v1alpha1

View File

@ -24,4 +24,4 @@ limitations under the License.
// AdmissionConfiguration and AdmissionPluginConfiguration are legacy static admission plugin configuration
// ValidatingWebhookConfiguration, and MutatingWebhookConfiguration are for the
// new dynamic admission controller configuration.
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/admissionregistration/v1beta1"
package v1beta1

View File

@ -18,4 +18,4 @@ limitations under the License.
// +groupName=apidiscovery.k8s.io
// Package apidiscovery provides api definitions for the "apidiscovery.k8s.io" api group.
package apidiscovery // import "k8s.io/kubernetes/pkg/apis/apidiscovery"
package apidiscovery

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=apidiscovery.k8s.io
package v2 // import "k8s.io/kubernetes/pkg/apis/apidiscovery/v2"
package v2

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=apidiscovery.k8s.io
package v2beta1 // import "k8s.io/kubernetes/pkg/apis/apidiscovery/v2beta1"
package v2beta1

View File

@ -19,4 +19,4 @@ limitations under the License.
// Package apiserverinternal contains the "internal" version of the API used by
// the apiservers themselves.
package apiserverinternal // import "k8s.io/kubernetes/pkg/apis/apiserverinternal"
package apiserverinternal

View File

@ -23,4 +23,4 @@ limitations under the License.
// Package v1alpha1 contains the v1alpha1 version of the API used by the
// apiservers themselves.
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/apiserverinternal/v1alpha1"
package v1alpha1

View File

@ -16,4 +16,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
package apps // import "k8s.io/kubernetes/pkg/apis/apps"
package apps

View File

@ -19,4 +19,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/apps/v1
package v1 // import "k8s.io/kubernetes/pkg/apis/apps/v1"
package v1

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/apps/v1beta1
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/apps/v1beta1"
package v1beta1

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/apps/v1beta2
package v1beta2 // import "k8s.io/kubernetes/pkg/apis/apps/v1beta2"
package v1beta2

View File

@ -17,4 +17,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
// +groupName=authentication.k8s.io
package authentication // import "k8s.io/kubernetes/pkg/apis/authentication"
package authentication

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/authentication/v1
package v1 // import "k8s.io/kubernetes/pkg/apis/authentication/v1"
package v1

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/authentication/v1alpha1
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/authentication/v1alpha1"
package v1alpha1

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/authentication/v1beta1
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/authentication/v1beta1"
package v1beta1

View File

@ -17,4 +17,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
// +groupName=authorization.k8s.io
package authorization // import "k8s.io/kubernetes/pkg/apis/authorization"
package authorization

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=authorization.k8s.io
package v1 // import "k8s.io/kubernetes/pkg/apis/authorization/v1"
package v1

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=authorization.k8s.io
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/authorization/v1beta1"
package v1beta1

View File

@ -16,4 +16,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
package autoscaling // import "k8s.io/kubernetes/pkg/apis/autoscaling"
package autoscaling

View File

@ -19,4 +19,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/autoscaling/v1
package v1 // import "k8s.io/kubernetes/pkg/apis/autoscaling/v1"
package v1

View File

@ -19,4 +19,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/autoscaling/v2
package v2 // import "k8s.io/kubernetes/pkg/apis/autoscaling/v2"
package v2

View File

@ -19,4 +19,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/autoscaling/v2beta1
package v2beta1 // import "k8s.io/kubernetes/pkg/apis/autoscaling/v2beta1"
package v2beta1

View File

@ -19,4 +19,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/autoscaling/v2beta2
package v2beta2 // import "k8s.io/kubernetes/pkg/apis/autoscaling/v2beta2"
package v2beta2

View File

@ -16,4 +16,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
package batch // import "k8s.io/kubernetes/pkg/apis/batch"
package batch

View File

@ -19,4 +19,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/batch/v1
package v1 // import "k8s.io/kubernetes/pkg/apis/batch/v1"
package v1

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/batch/v1beta1
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/batch/v1beta1"
package v1beta1

View File

@ -17,4 +17,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
// +groupName=certificates.k8s.io
package certificates // import "k8s.io/kubernetes/pkg/apis/certificates"
package certificates

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=certificates.k8s.io
package v1 // import "k8s.io/kubernetes/pkg/apis/certificates/v1"
package v1

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=certificates.k8s.io
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/certificates/v1alpha1"
package v1alpha1

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=certificates.k8s.io
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/certificates/v1beta1"
package v1beta1

View File

@ -18,4 +18,4 @@ limitations under the License.
// +groupName=coordination.k8s.io
package coordination // import "k8s.io/kubernetes/pkg/apis/coordination"
package coordination

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=coordination.k8s.io
package v1 // import "k8s.io/kubernetes/pkg/apis/coordination/v1"
package v1

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=coordination.k8s.io
package v1alpha2 // import "k8s.io/kubernetes/pkg/apis/coordination/v1alpha2"
package v1alpha2

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=coordination.k8s.io
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/coordination/v1beta1"
package v1beta1

View File

@ -22,4 +22,4 @@ limitations under the License.
// The contract presented to clients is located in the versioned packages,
// which are sub-directories. The first one is "v1". Those packages
// describe how a particular version is serialized to storage/network.
package core // import "k8s.io/kubernetes/pkg/apis/core"
package core

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen-input=k8s.io/api/core/v1
// Package v1 is the v1 version of the API.
package v1 // import "k8s.io/kubernetes/pkg/apis/core/v1"
package v1

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package validation has functions for validating the correctness of api
// objects and explaining what is wrong with them when they aren't valid.
package validation // import "k8s.io/kubernetes/pkg/apis/core/validation"
package validation

View File

@ -19,4 +19,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/discovery/v1
package v1 // import "k8s.io/kubernetes/pkg/apis/discovery/v1"
package v1

View File

@ -19,4 +19,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/discovery/v1beta1
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/discovery/v1beta1"
package v1beta1

View File

@ -16,4 +16,4 @@ limitations under the License.
// +groupName=events.k8s.io
package events // import "k8s.io/kubernetes/pkg/apis/events"
package events

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=events.k8s.io
package v1 // import "k8s.io/kubernetes/pkg/apis/events/v1"
package v1

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=events.k8s.io
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/events/v1beta1"
package v1beta1

View File

@ -16,4 +16,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
package extensions // import "k8s.io/kubernetes/pkg/apis/extensions"
package extensions

View File

@ -23,4 +23,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/extensions/v1beta1
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/extensions/v1beta1"
package v1beta1

View File

@ -18,4 +18,4 @@ limitations under the License.
// +groupName=flowcontrol.apiserver.k8s.io
// Package flowcontrol provides api definitions for the "flowcontrol.apiserver.k8s.io" api group.
package flowcontrol // import "k8s.io/kubernetes/pkg/apis/flowcontrol"
package flowcontrol

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=flowcontrol.apiserver.k8s.io
package v1 // import "k8s.io/kubernetes/pkg/apis/flowcontrol/v1"
package v1

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=flowcontrol.apiserver.k8s.io
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta1"
package v1beta1

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=flowcontrol.apiserver.k8s.io
package v1beta2 // import "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta2"
package v1beta2

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=flowcontrol.apiserver.k8s.io
package v1beta3 // import "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta3"
package v1beta3

View File

@ -17,4 +17,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
// +groupName=imagepolicy.k8s.io
package imagepolicy // import "k8s.io/kubernetes/pkg/apis/imagepolicy"
package imagepolicy

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=imagepolicy.k8s.io
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/imagepolicy/v1alpha1"
package v1alpha1

View File

@ -17,4 +17,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
// +groupName=networking.k8s.io
package networking // import "k8s.io/kubernetes/pkg/apis/networking"
package networking

View File

@ -21,4 +21,4 @@ limitations under the License.
// +k8s:defaulter-gen-input=k8s.io/api/networking/v1
// +groupName=networking.k8s.io
package v1 // import "k8s.io/kubernetes/pkg/apis/networking/v1"
package v1

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen-input=k8s.io/api/networking/v1alpha1
// +groupName=networking.k8s.io
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/networking/v1alpha1"
package v1alpha1

View File

@ -21,4 +21,4 @@ limitations under the License.
// +k8s:defaulter-gen-input=k8s.io/api/networking/v1beta1
// +groupName=networking.k8s.io
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/networking/v1beta1"
package v1beta1

View File

@ -17,4 +17,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
// +groupName=node.k8s.io
package node // import "k8s.io/kubernetes/pkg/apis/node"
package node

View File

@ -19,4 +19,4 @@ limitations under the License.
// +groupName=node.k8s.io
package v1 // import "k8s.io/kubernetes/pkg/apis/node/v1"
package v1

View File

@ -19,4 +19,4 @@ limitations under the License.
// +groupName=node.k8s.io
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/node/v1alpha1"
package v1alpha1

View File

@ -19,4 +19,4 @@ limitations under the License.
// +groupName=node.k8s.io
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/node/v1beta1"
package v1beta1

View File

@ -16,4 +16,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
package policy // import "k8s.io/kubernetes/pkg/apis/policy"
package policy

View File

@ -21,4 +21,4 @@ limitations under the License.
// Package policy is for any kind of policy object. Currently, this only
// includes policyv1.PodDisruptionBudget
package v1 // import "k8s.io/kubernetes/pkg/apis/policy/v1"
package v1

View File

@ -22,4 +22,4 @@ limitations under the License.
// Package policy is for any kind of policy object. Suitable examples, even if
// they aren't all here, are policyv1beta1.PodDisruptionBudget,
// NetworkPolicy, etc.
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/policy/v1beta1"
package v1beta1

View File

@ -17,4 +17,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
// +groupName=rbac.authorization.k8s.io
package rbac // import "k8s.io/kubernetes/pkg/apis/rbac"
package rbac

View File

@ -22,4 +22,4 @@ limitations under the License.
// +groupName=rbac.authorization.k8s.io
package v1 // import "k8s.io/kubernetes/pkg/apis/rbac/v1"
package v1

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=rbac.authorization.k8s.io
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/rbac/v1alpha1"
package v1alpha1

View File

@ -21,4 +21,4 @@ limitations under the License.
// +groupName=rbac.authorization.k8s.io
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/rbac/v1beta1"
package v1beta1

View File

@ -18,4 +18,4 @@ limitations under the License.
// Package resource contains the latest (or "internal") version of the
// Kubernetes resource API objects.
package resource // import "k8s.io/kubernetes/pkg/apis/resource"
package resource

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen-input=k8s.io/api/resource/v1alpha3
// Package v1alpha3 is the v1alpha3 version of the resource API.
package v1alpha3 // import "k8s.io/kubernetes/pkg/apis/resource/v1alpha3"
package v1alpha3

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen-input=k8s.io/api/resource/v1beta1
// Package v1beta1 is the v1beta1 version of the resource API.
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/resource/v1beta1"
package v1beta1

View File

@ -17,4 +17,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
// +groupName=scheduling.k8s.io
package scheduling // import "k8s.io/kubernetes/pkg/apis/scheduling"
package scheduling

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/scheduling/v1
package v1 // import "k8s.io/kubernetes/pkg/apis/scheduling/v1"
package v1

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/scheduling/v1alpha1
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/scheduling/v1alpha1"
package v1alpha1

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/scheduling/v1beta1
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/scheduling/v1beta1"
package v1beta1

View File

@ -17,4 +17,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
// +groupName=storage.k8s.io
package storage // import "k8s.io/kubernetes/pkg/apis/storage"
package storage

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/storage/v1
package v1 // import "k8s.io/kubernetes/pkg/apis/storage/v1"
package v1

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/storage/v1alpha1
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/storage/v1alpha1"
package v1alpha1

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/storage/v1beta1
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/storage/v1beta1"
package v1beta1

View File

@ -17,4 +17,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
// +groupName=storagemigration.k8s.io
package storagemigration // import "k8s.io/kubernetes/pkg/apis/storagemigration"
package storagemigration

View File

@ -20,4 +20,4 @@ limitations under the License.
// +k8s:defaulter-gen=TypeMeta
// +k8s:defaulter-gen-input=k8s.io/api/storagemigration/v1alpha1
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/storagemigration/v1alpha1"
package v1alpha1

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package capabilities manages system level capabilities
package capabilities // import "k8s.io/kubernetes/pkg/capabilities"
package capabilities

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package ports defines ports used by various pieces of the kubernetes
// infrastructure.
package ports // import "k8s.io/kubernetes/pkg/cluster/ports"
package ports

View File

@ -16,4 +16,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
package config // import "k8s.io/kubernetes/pkg/controller/apis/config"
package config

View File

@ -48,4 +48,4 @@ limitations under the License.
// +k8s:defaulter-gen-input=k8s.io/kube-controller-manager/config/v1alpha1
// +groupName=kubecontrollermanager.config.k8s.io
package v1alpha1 // import "k8s.io/kubernetes/pkg/controller/apis/config/v1alpha1"
package v1alpha1

View File

@ -17,4 +17,4 @@ limitations under the License.
// Package bootstrap provides automatic processes necessary for bootstraping.
// This includes managing and expiring tokens along with signing well known
// configmaps with those tokens.
package bootstrap // import "k8s.io/kubernetes/pkg/controller/bootstrap"
package bootstrap

View File

@ -16,4 +16,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
package config // import "k8s.io/kubernetes/pkg/controller/certificates/signer/config"
package config

View File

@ -18,4 +18,4 @@ limitations under the License.
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/controller/certificates/signer/config
// +k8s:conversion-gen-external-types=k8s.io/kube-controller-manager/config/v1alpha1
package v1alpha1 // import "k8s.io/kubernetes/pkg/controller/certificates/signer/config/v1alpha1"
package v1alpha1

View File

@ -16,4 +16,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
package config // import "k8s.io/kubernetes/pkg/controller/cronjob/config"
package config

Some files were not shown because too many files have changed in this diff Show More