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:
Davanum Srinivas 2016-07-15 20:21:31 -04:00
parent 36c07cc554
commit 2b0ed014b7
280 changed files with 280 additions and 280 deletions

View File

@ -17,4 +17,4 @@ limitations under the License.
// Package discoverysummarizer contains code for the discovery summarizer
// (program to summarize discovery information from all federated api servers)
// as per https://github.com/kubernetes/kubernetes/blob/master/docs/proposals/federated-api-servers.md
package discoverysummarizer
package discoverysummarizer // import "k8s.io/kubernetes/cmd/kubernetes-discovery/discoverysummarizer"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// +groupName=testgroup.k8s.io
package testgroup
package testgroup // import "k8s.io/kubernetes/cmd/libs/go2idl/client-gen/test_apis/testgroup.k8s.io"

View File

@ -28,4 +28,4 @@ limitations under the License.
// package. Additionally, all naming systems in the Context will be added as
// functions to the parsed template, so that they can be called directly from
// your templates!
package generator
package generator // import "k8s.io/kubernetes/cmd/libs/go2idl/generator"

View File

@ -28,4 +28,4 @@ limitations under the License.
//
// Additionally, a "RawNamer" can optionally keep track of what needs to be
// imported.
package namer
package namer // import "k8s.io/kubernetes/cmd/libs/go2idl/namer"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package parser provides code to parse go files, type-check them, extract the
// types.
package parser
package parser // import "k8s.io/kubernetes/cmd/libs/go2idl/parser"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package types contains go type information, packaged in a way that makes
// auto-generation convenient, whether by template or straight go functions.
package types
package types // import "k8s.io/kubernetes/cmd/libs/go2idl/types"

View File

@ -21,4 +21,4 @@ limitations under the License.
// the upstream hyperkube module is not reusable.
//
// TODO(jdef,sttts): refactor upstream cmd/hyperkube to be reusable with the necessary mesos changes
package main
package main // import "k8s.io/kubernetes/contrib/mesos/cmd/km"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package assert is an utility package containing reusable testing functionality
// extending github.com/stretchr/testify/assert
package assert
package assert // import "k8s.io/kubernetes/contrib/mesos/pkg/assert"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package backoff provides backoff functionality with a simple API.
// Originally copied from Kubernetes: plugin/pkg/scheduler/factory/factory.go
package backoff
package backoff // import "k8s.io/kubernetes/contrib/mesos/pkg/backoff"

View File

@ -17,4 +17,4 @@ limitations under the License.
// Package controllermanager is largely a clone of the upstream implementation,
// with additional functionality to select between stock or a customized
// endpoints controller.
package controllermanager
package controllermanager // import "k8s.io/kubernetes/contrib/mesos/pkg/controllermanager"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package election provides interfaces used for master election.
package election
package election // import "k8s.io/kubernetes/contrib/mesos/pkg/election"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package config contains executor configuration constants.
package config
package config // import "k8s.io/kubernetes/contrib/mesos/pkg/executor/config"

View File

@ -18,4 +18,4 @@ limitations under the License.
Package executor includes a mesos executor, which contains
a kubelet as its member to manage containers.
*/
package executor
package executor // import "k8s.io/kubernetes/contrib/mesos/pkg/executor"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package messages exposes executor event/message names as constants.
package messages
package messages // import "k8s.io/kubernetes/contrib/mesos/pkg/executor/messages"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package service contains the cmd/k8sm-executor glue code.
package service
package service // import "k8s.io/kubernetes/contrib/mesos/pkg/executor/service"

View File

@ -18,4 +18,4 @@ limitations under the License.
// kubernetes-mesos components into a single binary form, providing a
// simple mechanism for intra-component discovery as per the original
// Kubernetes hyperkube package.
package hyperkube
package hyperkube // import "k8s.io/kubernetes/contrib/mesos/pkg/hyperkube"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package config contains minion configuration constants.
package config
package config // import "k8s.io/kubernetes/contrib/mesos/pkg/minion/config"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package minion contains the executor and proxy bootstrap code for a Mesos slave
package minion
package minion // import "k8s.io/kubernetes/contrib/mesos/pkg/minion"

View File

@ -17,4 +17,4 @@ limitations under the License.
// Package tasks provides an API for supervising system processes as Task's.
// It provides stronger guarantees with respect to process lifecycle than a
// standalone kubelet running static pods.
package tasks
package tasks // import "k8s.io/kubernetes/contrib/mesos/pkg/minion/tasks"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package node provides utilities to create and update nodes
package node
package node // import "k8s.io/kubernetes/contrib/mesos/pkg/node"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package offers contains code that manages Mesos offers.
package offers
package offers // import "k8s.io/kubernetes/contrib/mesos/pkg/offers"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package metrics defines and exposes instrumentation metrics related to
// Mesos offers.
package metrics
package metrics // import "k8s.io/kubernetes/contrib/mesos/pkg/offers/metrics"

View File

@ -16,4 +16,4 @@ limitations under the License.
// podutil contains utilities for reading, writing and filtering streams
// and lists of api.Pod objects.
package podutil
package podutil // import "k8s.io/kubernetes/contrib/mesos/pkg/podutil"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package proc provides opinionated utilities for processing background
// operations and future errors, somewhat inspired by libprocess.
package proc
package proc // import "k8s.io/kubernetes/contrib/mesos/pkg/proc"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package profile contains reusable code for profiling Go programs with pprof.
package profile
package profile // import "k8s.io/kubernetes/contrib/mesos/pkg/profile"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package queue provides several queue implementations, originally
// inspired by Kubernetes pkg/client/cache/fifo.
package queue
package queue // import "k8s.io/kubernetes/contrib/mesos/pkg/queue"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Some file descriptor manipulation funcs (Unix-Only), inspired by
// https://github.com/skarnet/execline/blob/master/src/execline/redirfd.c
package redirfd
package redirfd // import "k8s.io/kubernetes/contrib/mesos/pkg/redirfd"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package runtime provides utilities for semaphores (chan struct{}),
// a simple Latch implementation, and metrics for reporting handled panics.
package runtime
package runtime // import "k8s.io/kubernetes/contrib/mesos/pkg/runtime"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package algorithm implements the SchedulerAlgorithm
package algorithm
package algorithm // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/algorithm"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package podschedulers defines an interface (w/ implementations) for matching
// pods against offers.
package podschedulers
package podschedulers // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/algorithm/podschedulers"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package binder implements the Binder which launched a task and let the
// executor do the actual binding.
package binder
package binder // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/binder"

View File

@ -17,4 +17,4 @@ limitations under the License.
// Package controller implements the scheduling controller which waits for pod
// events from the queuer (i.e. from the apiserver), passes them to the
// SchedulerAlgorithm and in case of success to the binder which does the launch.
package controller
package controller // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/controller"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package deleter implements the deleter which listens for pod DELETE events
// from the apiserver and kills tasks for deleted pods.
package deleter
package deleter // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/deleter"

View File

@ -17,4 +17,4 @@ limitations under the License.
// Package components implements independent aspects of the scheduler which
// do not use Framework or Scheduler internals, but rely solely on the Scheduler
// interface.
package components
package components // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package errorhandler implements the ErrorHandler which handles scheduer error
// and possibly requeue pods for scheduling again.
package errorhandler
package errorhandler // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/errorhandler"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package framework implements the Mesos scheduler.
package framework
package framework // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/framework"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package podreconciler implements pod reconciliation of pods which failed
// to launch, i.e. before binding by the executor took place.
package podreconciler
package podreconciler // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/podreconciler"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package config provides mechanisms for low-level scheduler tuning.
package config
package config // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/config"

View File

@ -18,4 +18,4 @@ limitations under the License.
// Incomplete.
// TODO(jdef) We need better alignment between k8s-mesos and k8s scheduling
// constraints (read: a common constraints API).
package constraint
package constraint // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/constraint"

View File

@ -15,7 +15,7 @@ limitations under the License.
*/
// Package scheduler implements the Kubernetes Mesos scheduler.
package scheduler
package scheduler // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler"
// Created from contrib/mesos/docs/scheduler.monopic:
//

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package errors contains all scheduler wide used errors
package errors
package errors // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/errors"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package executorinfo provides a lru-based executor info registry
// as well as some utility methods.
package executorinfo
package executorinfo // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/executorinfo"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package ha encapsulates high-availability scheduler concerns.
package ha
package ha // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/ha"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package integration implements integration tests.
package integration
package integration // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/integration"

View File

@ -19,4 +19,4 @@ limitations under the License.
// for reconciliation upon failover. Other annotations are used as part of
// the host-to-pod port-mapping implementation understood by the k8s-mesos
// scheduler and custom endpoints-controller implementation.
package meta
package meta // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/meta"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package metrics defines and exposes instrumentation metrics of the scheduler.
package metrics
package metrics // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/metrics"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package podtask maps Kubernetes pods to Mesos tasks.
package podtask
package podtask // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/podtask"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package queuer implements a Pod Queuer which stores and yields pods waiting
// being scheduled.
package queuer
package queuer // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/queuer"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package resources contains the Mesos scheduler specific resource functions
package resources
package resources // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/resources"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package service contains the cmd/k8sm-scheduler glue code
package service
package service // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/service"

View File

@ -17,4 +17,4 @@ limitations under the License.
// Package service is largely a clone of the stock Kubernetes endpoints
// controller, extended with some very specific functionality related
// to kubernetes-mesos specific host-pod port mapping.
package service
package service // import "k8s.io/kubernetes/contrib/mesos/pkg/service"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Examples contains sample applications for trying out the concepts in Kubernetes.
package examples
package examples // import "k8s.io/kubernetes/examples"

View File

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

View File

@ -17,4 +17,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package,register
// +k8s:conversion-gen=k8s.io/kubernetes/federation/apis/federation
package v1beta1
package v1beta1 // import "k8s.io/kubernetes/federation/apis/federation/v1beta1"

View File

@ -17,4 +17,4 @@ limitations under the License.
// This package is generated by client-gen with arguments: --clientset-name=federation_release_1_3 --clientset-path=k8s.io/kubernetes/federation/client/clientset_generated --included-types-overrides=[api/v1/Service] --input=[../../federation/apis/federation/v1beta1,api/v1]
// This package has the automatically generated clientset.
package federation_release_1_3
package federation_release_1_3 // import "k8s.io/kubernetes/federation/client/clientset_generated/federation_release_1_3"

View File

@ -17,4 +17,4 @@ limitations under the License.
// This package is generated by client-gen with arguments: --clientset-name=federation_release_1_3 --clientset-path=k8s.io/kubernetes/federation/client/clientset_generated --included-types-overrides=[api/v1/Service] --input=[../../federation/apis/federation/v1beta1,api/v1]
// This package has the automatically generated fake clientset.
package fake
package fake // import "k8s.io/kubernetes/federation/client/clientset_generated/federation_release_1_3/fake"

View File

@ -17,4 +17,4 @@ limitations under the License.
// This package is generated by client-gen with arguments: --clientset-name=federation_release_1_3 --clientset-path=k8s.io/kubernetes/federation/client/clientset_generated --included-types-overrides=[api/v1/Service] --input=[../../federation/apis/federation/v1beta1,api/v1]
// This package has the automatically generated typed clients.
package v1
package v1 // import "k8s.io/kubernetes/federation/client/clientset_generated/federation_release_1_3/typed/core/v1"

View File

@ -17,4 +17,4 @@ limitations under the License.
// This package is generated by client-gen with arguments: --clientset-name=federation_release_1_3 --clientset-path=k8s.io/kubernetes/federation/client/clientset_generated --included-types-overrides=[api/v1/Service] --input=[../../federation/apis/federation/v1beta1,api/v1]
// Package fake has the automatically generated clients.
package fake
package fake // import "k8s.io/kubernetes/federation/client/clientset_generated/federation_release_1_3/typed/core/v1/fake"

View File

@ -17,4 +17,4 @@ limitations under the License.
// This package is generated by client-gen with arguments: --clientset-name=federation_release_1_3 --clientset-path=k8s.io/kubernetes/federation/client/clientset_generated --included-types-overrides=[api/v1/Service] --input=[../../federation/apis/federation/v1beta1,api/v1]
// This package has the automatically generated typed clients.
package v1beta1
package v1beta1 // import "k8s.io/kubernetes/federation/client/clientset_generated/federation_release_1_3/typed/federation/v1beta1"

View File

@ -17,4 +17,4 @@ limitations under the License.
// This package is generated by client-gen with arguments: --clientset-name=federation_release_1_3 --clientset-path=k8s.io/kubernetes/federation/client/clientset_generated --included-types-overrides=[api/v1/Service] --input=[../../federation/apis/federation/v1beta1,api/v1]
// Package fake has the automatically generated clients.
package fake
package fake // import "k8s.io/kubernetes/federation/client/clientset_generated/federation_release_1_3/typed/federation/v1beta1/fake"

View File

@ -18,4 +18,4 @@ limitations under the License.
dnsprovider supplies interfaces for dns service providers (e.g. Google Cloud DNS, AWS route53, etc).
Implementations exist in the providers sub-package
*/
package dnsprovider
package dnsprovider // import "k8s.io/kubernetes/federation/pkg/dnsprovider"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package cluster contains code for syncing cluster
package cluster
package cluster // import "k8s.io/kubernetes/federation/pkg/federation-controller/cluster"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package federation_controller contains code for controllers (like the cluster
// controller).
package federation_controller
package federation_controller // import "k8s.io/kubernetes/federation/pkg/federation-controller"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package service contains code for syncing Kubernetes services,
// and cloud DNS servers with the federated service registry.
package service
package service // import "k8s.io/kubernetes/federation/pkg/federation-controller/service"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package annotations defines annotation keys that shared between server and client
package annotations
package annotations // import "k8s.io/kubernetes/pkg/api/annotations"

View File

@ -21,4 +21,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 api
package api // import "k8s.io/kubernetes/pkg/api"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package errors provides detailed error types for api field validation.
package errors
package errors // import "k8s.io/kubernetes/pkg/api/errors"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package etcd provides conversion of etcd errors to API errors.
package storage
package storage // import "k8s.io/kubernetes/pkg/api/errors/storage"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package meta provides functions for retrieving API metadata from objects
// belonging to the Kubernetes API
package meta
package meta // import "k8s.io/kubernetes/pkg/api/meta"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package rest defines common logic around changes to Kubernetes resources.
package rest
package rest // import "k8s.io/kubernetes/pkg/api/rest"

View File

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

View File

@ -18,4 +18,4 @@ limitations under the License.
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/api
// Package v1 is the v1 version of the API.
package v1
package v1 // import "k8s.io/kubernetes/pkg/api/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
package validation // import "k8s.io/kubernetes/pkg/api/validation"

View File

@ -17,4 +17,4 @@ limitations under the License.
// Package apimachinery contains the generic API machinery code that
// is common to both server and clients.
// This package should never import specific API objects.
package apimachinery
package apimachinery // import "k8s.io/kubernetes/pkg/apimachinery"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -19,4 +19,4 @@ limitations under the License.
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/autoscaling
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/batch
package v1beta1
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/extensions/v1beta1"

View File

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

View File

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

View File

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

View File

@ -18,4 +18,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package,register
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/rbac
package v1alpha1
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/rbac/v1alpha1"

View File

@ -15,4 +15,4 @@ limitations under the License.
*/
// Package apiserver contains the code that provides a rest.ful api service.
package apiserver
package apiserver // import "k8s.io/kubernetes/pkg/apiserver"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package user contains utilities for dealing with simple user exchange in the auth
// packages. The user.Info interface defines an interface for exchanging that info.
package user
package user // import "k8s.io/kubernetes/pkg/auth/user"

View File

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

View File

@ -21,4 +21,4 @@ limitations under the License.
// list currently available nodes), and one that additionally acts as
// a FIFO queue (for example, to allow a scheduler to process incoming
// pods).
package cache
package cache // import "k8s.io/kubernetes/pkg/client/cache"

View File

@ -17,4 +17,4 @@ limitations under the License.
// This package is generated by client-gen with arguments: --clientset-name=release_1_2 --input=[api/v1,extensions/v1beta1]
// This package has the automatically generated clientset.
package release_1_2
package release_1_2 // import "k8s.io/kubernetes/pkg/client/clientset_generated/release_1_2"

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