mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 10:51:29 +00:00
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:
parent
36c07cc554
commit
2b0ed014b7
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// Package discoverysummarizer contains code for the discovery summarizer
|
// Package discoverysummarizer contains code for the discovery summarizer
|
||||||
// (program to summarize discovery information from all federated api servers)
|
// (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
|
// 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"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// +groupName=testgroup.k8s.io
|
// +groupName=testgroup.k8s.io
|
||||||
package testgroup
|
package testgroup // import "k8s.io/kubernetes/cmd/libs/go2idl/client-gen/test_apis/testgroup.k8s.io"
|
||||||
|
@ -28,4 +28,4 @@ limitations under the License.
|
|||||||
// package. Additionally, all naming systems in the Context will be added as
|
// 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
|
// functions to the parsed template, so that they can be called directly from
|
||||||
// your templates!
|
// your templates!
|
||||||
package generator
|
package generator // import "k8s.io/kubernetes/cmd/libs/go2idl/generator"
|
||||||
|
@ -28,4 +28,4 @@ limitations under the License.
|
|||||||
//
|
//
|
||||||
// Additionally, a "RawNamer" can optionally keep track of what needs to be
|
// Additionally, a "RawNamer" can optionally keep track of what needs to be
|
||||||
// imported.
|
// imported.
|
||||||
package namer
|
package namer // import "k8s.io/kubernetes/cmd/libs/go2idl/namer"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package parser provides code to parse go files, type-check them, extract the
|
// Package parser provides code to parse go files, type-check them, extract the
|
||||||
// types.
|
// types.
|
||||||
package parser
|
package parser // import "k8s.io/kubernetes/cmd/libs/go2idl/parser"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package types contains go type information, packaged in a way that makes
|
// Package types contains go type information, packaged in a way that makes
|
||||||
// auto-generation convenient, whether by template or straight go functions.
|
// auto-generation convenient, whether by template or straight go functions.
|
||||||
package types
|
package types // import "k8s.io/kubernetes/cmd/libs/go2idl/types"
|
||||||
|
@ -21,4 +21,4 @@ limitations under the License.
|
|||||||
// the upstream hyperkube module is not reusable.
|
// the upstream hyperkube module is not reusable.
|
||||||
//
|
//
|
||||||
// TODO(jdef,sttts): refactor upstream cmd/hyperkube to be reusable with the necessary mesos changes
|
// 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"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package assert is an utility package containing reusable testing functionality
|
// Package assert is an utility package containing reusable testing functionality
|
||||||
// extending github.com/stretchr/testify/assert
|
// extending github.com/stretchr/testify/assert
|
||||||
package assert
|
package assert // import "k8s.io/kubernetes/contrib/mesos/pkg/assert"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package backoff provides backoff functionality with a simple API.
|
// Package backoff provides backoff functionality with a simple API.
|
||||||
// Originally copied from Kubernetes: plugin/pkg/scheduler/factory/factory.go
|
// Originally copied from Kubernetes: plugin/pkg/scheduler/factory/factory.go
|
||||||
package backoff
|
package backoff // import "k8s.io/kubernetes/contrib/mesos/pkg/backoff"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// Package controllermanager is largely a clone of the upstream implementation,
|
// Package controllermanager is largely a clone of the upstream implementation,
|
||||||
// with additional functionality to select between stock or a customized
|
// with additional functionality to select between stock or a customized
|
||||||
// endpoints controller.
|
// endpoints controller.
|
||||||
package controllermanager
|
package controllermanager // import "k8s.io/kubernetes/contrib/mesos/pkg/controllermanager"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package election provides interfaces used for master election.
|
// Package election provides interfaces used for master election.
|
||||||
package election
|
package election // import "k8s.io/kubernetes/contrib/mesos/pkg/election"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package config contains executor configuration constants.
|
// Package config contains executor configuration constants.
|
||||||
package config
|
package config // import "k8s.io/kubernetes/contrib/mesos/pkg/executor/config"
|
||||||
|
@ -18,4 +18,4 @@ limitations under the License.
|
|||||||
Package executor includes a mesos executor, which contains
|
Package executor includes a mesos executor, which contains
|
||||||
a kubelet as its member to manage containers.
|
a kubelet as its member to manage containers.
|
||||||
*/
|
*/
|
||||||
package executor
|
package executor // import "k8s.io/kubernetes/contrib/mesos/pkg/executor"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package messages exposes executor event/message names as constants.
|
// Package messages exposes executor event/message names as constants.
|
||||||
package messages
|
package messages // import "k8s.io/kubernetes/contrib/mesos/pkg/executor/messages"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package service contains the cmd/k8sm-executor glue code.
|
// Package service contains the cmd/k8sm-executor glue code.
|
||||||
package service
|
package service // import "k8s.io/kubernetes/contrib/mesos/pkg/executor/service"
|
||||||
|
@ -18,4 +18,4 @@ limitations under the License.
|
|||||||
// kubernetes-mesos components into a single binary form, providing a
|
// kubernetes-mesos components into a single binary form, providing a
|
||||||
// simple mechanism for intra-component discovery as per the original
|
// simple mechanism for intra-component discovery as per the original
|
||||||
// Kubernetes hyperkube package.
|
// Kubernetes hyperkube package.
|
||||||
package hyperkube
|
package hyperkube // import "k8s.io/kubernetes/contrib/mesos/pkg/hyperkube"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package config contains minion configuration constants.
|
// Package config contains minion configuration constants.
|
||||||
package config
|
package config // import "k8s.io/kubernetes/contrib/mesos/pkg/minion/config"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package minion contains the executor and proxy bootstrap code for a Mesos slave
|
// 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"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// Package tasks provides an API for supervising system processes as Task's.
|
// Package tasks provides an API for supervising system processes as Task's.
|
||||||
// It provides stronger guarantees with respect to process lifecycle than a
|
// It provides stronger guarantees with respect to process lifecycle than a
|
||||||
// standalone kubelet running static pods.
|
// standalone kubelet running static pods.
|
||||||
package tasks
|
package tasks // import "k8s.io/kubernetes/contrib/mesos/pkg/minion/tasks"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package node provides utilities to create and update nodes
|
// Package node provides utilities to create and update nodes
|
||||||
package node
|
package node // import "k8s.io/kubernetes/contrib/mesos/pkg/node"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package offers contains code that manages Mesos offers.
|
// Package offers contains code that manages Mesos offers.
|
||||||
package offers
|
package offers // import "k8s.io/kubernetes/contrib/mesos/pkg/offers"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package metrics defines and exposes instrumentation metrics related to
|
// Package metrics defines and exposes instrumentation metrics related to
|
||||||
// Mesos offers.
|
// Mesos offers.
|
||||||
package metrics
|
package metrics // import "k8s.io/kubernetes/contrib/mesos/pkg/offers/metrics"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// podutil contains utilities for reading, writing and filtering streams
|
// podutil contains utilities for reading, writing and filtering streams
|
||||||
// and lists of api.Pod objects.
|
// and lists of api.Pod objects.
|
||||||
package podutil
|
package podutil // import "k8s.io/kubernetes/contrib/mesos/pkg/podutil"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package proc provides opinionated utilities for processing background
|
// Package proc provides opinionated utilities for processing background
|
||||||
// operations and future errors, somewhat inspired by libprocess.
|
// operations and future errors, somewhat inspired by libprocess.
|
||||||
package proc
|
package proc // import "k8s.io/kubernetes/contrib/mesos/pkg/proc"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package profile contains reusable code for profiling Go programs with pprof.
|
// Package profile contains reusable code for profiling Go programs with pprof.
|
||||||
package profile
|
package profile // import "k8s.io/kubernetes/contrib/mesos/pkg/profile"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package queue provides several queue implementations, originally
|
// Package queue provides several queue implementations, originally
|
||||||
// inspired by Kubernetes pkg/client/cache/fifo.
|
// inspired by Kubernetes pkg/client/cache/fifo.
|
||||||
package queue
|
package queue // import "k8s.io/kubernetes/contrib/mesos/pkg/queue"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Some file descriptor manipulation funcs (Unix-Only), inspired by
|
// Some file descriptor manipulation funcs (Unix-Only), inspired by
|
||||||
// https://github.com/skarnet/execline/blob/master/src/execline/redirfd.c
|
// https://github.com/skarnet/execline/blob/master/src/execline/redirfd.c
|
||||||
package redirfd
|
package redirfd // import "k8s.io/kubernetes/contrib/mesos/pkg/redirfd"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package runtime provides utilities for semaphores (chan struct{}),
|
// Package runtime provides utilities for semaphores (chan struct{}),
|
||||||
// a simple Latch implementation, and metrics for reporting handled panics.
|
// a simple Latch implementation, and metrics for reporting handled panics.
|
||||||
package runtime
|
package runtime // import "k8s.io/kubernetes/contrib/mesos/pkg/runtime"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package algorithm implements the SchedulerAlgorithm
|
// Package algorithm implements the SchedulerAlgorithm
|
||||||
package algorithm
|
package algorithm // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/algorithm"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package podschedulers defines an interface (w/ implementations) for matching
|
// Package podschedulers defines an interface (w/ implementations) for matching
|
||||||
// pods against offers.
|
// pods against offers.
|
||||||
package podschedulers
|
package podschedulers // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/algorithm/podschedulers"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package binder implements the Binder which launched a task and let the
|
// Package binder implements the Binder which launched a task and let the
|
||||||
// executor do the actual binding.
|
// executor do the actual binding.
|
||||||
package binder
|
package binder // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/binder"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// Package controller implements the scheduling controller which waits for pod
|
// Package controller implements the scheduling controller which waits for pod
|
||||||
// events from the queuer (i.e. from the apiserver), passes them to the
|
// 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.
|
// 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"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package deleter implements the deleter which listens for pod DELETE events
|
// Package deleter implements the deleter which listens for pod DELETE events
|
||||||
// from the apiserver and kills tasks for deleted pods.
|
// from the apiserver and kills tasks for deleted pods.
|
||||||
package deleter
|
package deleter // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/deleter"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// Package components implements independent aspects of the scheduler which
|
// Package components implements independent aspects of the scheduler which
|
||||||
// do not use Framework or Scheduler internals, but rely solely on the Scheduler
|
// do not use Framework or Scheduler internals, but rely solely on the Scheduler
|
||||||
// interface.
|
// interface.
|
||||||
package components
|
package components // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package errorhandler implements the ErrorHandler which handles scheduer error
|
// Package errorhandler implements the ErrorHandler which handles scheduer error
|
||||||
// and possibly requeue pods for scheduling again.
|
// and possibly requeue pods for scheduling again.
|
||||||
package errorhandler
|
package errorhandler // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/errorhandler"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package framework implements the Mesos scheduler.
|
// Package framework implements the Mesos scheduler.
|
||||||
package framework
|
package framework // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/framework"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package podreconciler implements pod reconciliation of pods which failed
|
// Package podreconciler implements pod reconciliation of pods which failed
|
||||||
// to launch, i.e. before binding by the executor took place.
|
// 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"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package config provides mechanisms for low-level scheduler tuning.
|
// Package config provides mechanisms for low-level scheduler tuning.
|
||||||
package config
|
package config // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/config"
|
||||||
|
@ -18,4 +18,4 @@ limitations under the License.
|
|||||||
// Incomplete.
|
// Incomplete.
|
||||||
// TODO(jdef) We need better alignment between k8s-mesos and k8s scheduling
|
// TODO(jdef) We need better alignment between k8s-mesos and k8s scheduling
|
||||||
// constraints (read: a common constraints API).
|
// constraints (read: a common constraints API).
|
||||||
package constraint
|
package constraint // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/constraint"
|
||||||
|
@ -15,7 +15,7 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package scheduler implements the Kubernetes Mesos scheduler.
|
// 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:
|
// Created from contrib/mesos/docs/scheduler.monopic:
|
||||||
//
|
//
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package errors contains all scheduler wide used errors
|
// Package errors contains all scheduler wide used errors
|
||||||
package errors
|
package errors // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/errors"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package executorinfo provides a lru-based executor info registry
|
// Package executorinfo provides a lru-based executor info registry
|
||||||
// as well as some utility methods.
|
// as well as some utility methods.
|
||||||
package executorinfo
|
package executorinfo // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/executorinfo"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package ha encapsulates high-availability scheduler concerns.
|
// Package ha encapsulates high-availability scheduler concerns.
|
||||||
package ha
|
package ha // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/ha"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package integration implements integration tests.
|
// Package integration implements integration tests.
|
||||||
package integration
|
package integration // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/integration"
|
||||||
|
@ -19,4 +19,4 @@ limitations under the License.
|
|||||||
// for reconciliation upon failover. Other annotations are used as part of
|
// for reconciliation upon failover. Other annotations are used as part of
|
||||||
// the host-to-pod port-mapping implementation understood by the k8s-mesos
|
// the host-to-pod port-mapping implementation understood by the k8s-mesos
|
||||||
// scheduler and custom endpoints-controller implementation.
|
// scheduler and custom endpoints-controller implementation.
|
||||||
package meta
|
package meta // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/meta"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package metrics defines and exposes instrumentation metrics of the scheduler.
|
// Package metrics defines and exposes instrumentation metrics of the scheduler.
|
||||||
package metrics
|
package metrics // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/metrics"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package podtask maps Kubernetes pods to Mesos tasks.
|
// Package podtask maps Kubernetes pods to Mesos tasks.
|
||||||
package podtask
|
package podtask // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/podtask"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package queuer implements a Pod Queuer which stores and yields pods waiting
|
// Package queuer implements a Pod Queuer which stores and yields pods waiting
|
||||||
// being scheduled.
|
// being scheduled.
|
||||||
package queuer
|
package queuer // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/queuer"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package resources contains the Mesos scheduler specific resource functions
|
// Package resources contains the Mesos scheduler specific resource functions
|
||||||
package resources
|
package resources // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/resources"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package service contains the cmd/k8sm-scheduler glue code
|
// Package service contains the cmd/k8sm-scheduler glue code
|
||||||
package service
|
package service // import "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/service"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// Package service is largely a clone of the stock Kubernetes endpoints
|
// Package service is largely a clone of the stock Kubernetes endpoints
|
||||||
// controller, extended with some very specific functionality related
|
// controller, extended with some very specific functionality related
|
||||||
// to kubernetes-mesos specific host-pod port mapping.
|
// to kubernetes-mesos specific host-pod port mapping.
|
||||||
package service
|
package service // import "k8s.io/kubernetes/contrib/mesos/pkg/service"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Examples contains sample applications for trying out the concepts in Kubernetes.
|
// Examples contains sample applications for trying out the concepts in Kubernetes.
|
||||||
package examples
|
package examples // import "k8s.io/kubernetes/examples"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
|
|
||||||
package federation
|
package federation // import "k8s.io/kubernetes/federation/apis/federation"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
// +k8s:conversion-gen=k8s.io/kubernetes/federation/apis/federation
|
// +k8s:conversion-gen=k8s.io/kubernetes/federation/apis/federation
|
||||||
|
|
||||||
package v1beta1
|
package v1beta1 // import "k8s.io/kubernetes/federation/apis/federation/v1beta1"
|
||||||
|
@ -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 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.
|
// 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"
|
||||||
|
@ -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 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.
|
// 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"
|
||||||
|
@ -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 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.
|
// 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"
|
||||||
|
@ -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 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 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"
|
||||||
|
@ -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 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.
|
// 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"
|
||||||
|
@ -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 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 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"
|
||||||
|
@ -18,4 +18,4 @@ limitations under the License.
|
|||||||
dnsprovider supplies interfaces for dns service providers (e.g. Google Cloud DNS, AWS route53, etc).
|
dnsprovider supplies interfaces for dns service providers (e.g. Google Cloud DNS, AWS route53, etc).
|
||||||
Implementations exist in the providers sub-package
|
Implementations exist in the providers sub-package
|
||||||
*/
|
*/
|
||||||
package dnsprovider
|
package dnsprovider // import "k8s.io/kubernetes/federation/pkg/dnsprovider"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package cluster contains code for syncing cluster
|
// Package cluster contains code for syncing cluster
|
||||||
package cluster
|
package cluster // import "k8s.io/kubernetes/federation/pkg/federation-controller/cluster"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package federation_controller contains code for controllers (like the cluster
|
// Package federation_controller contains code for controllers (like the cluster
|
||||||
// controller).
|
// controller).
|
||||||
package federation_controller
|
package federation_controller // import "k8s.io/kubernetes/federation/pkg/federation-controller"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package service contains code for syncing Kubernetes services,
|
// Package service contains code for syncing Kubernetes services,
|
||||||
// and cloud DNS servers with the federated service registry.
|
// and cloud DNS servers with the federated service registry.
|
||||||
package service
|
package service // import "k8s.io/kubernetes/federation/pkg/federation-controller/service"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package annotations defines annotation keys that shared between server and client
|
// Package annotations defines annotation keys that shared between server and client
|
||||||
package annotations
|
package annotations // import "k8s.io/kubernetes/pkg/api/annotations"
|
||||||
|
@ -21,4 +21,4 @@ limitations under the License.
|
|||||||
// The contract presented to clients is located in the versioned packages,
|
// The contract presented to clients is located in the versioned packages,
|
||||||
// which are sub-directories. The first one is "v1". Those packages
|
// which are sub-directories. The first one is "v1". Those packages
|
||||||
// describe how a particular version is serialized to storage/network.
|
// describe how a particular version is serialized to storage/network.
|
||||||
package api
|
package api // import "k8s.io/kubernetes/pkg/api"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package errors provides detailed error types for api field validation.
|
// Package errors provides detailed error types for api field validation.
|
||||||
package errors
|
package errors // import "k8s.io/kubernetes/pkg/api/errors"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package etcd provides conversion of etcd errors to API errors.
|
// Package etcd provides conversion of etcd errors to API errors.
|
||||||
package storage
|
package storage // import "k8s.io/kubernetes/pkg/api/errors/storage"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package meta provides functions for retrieving API metadata from objects
|
// Package meta provides functions for retrieving API metadata from objects
|
||||||
// belonging to the Kubernetes API
|
// belonging to the Kubernetes API
|
||||||
package meta
|
package meta // import "k8s.io/kubernetes/pkg/api/meta"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package rest defines common logic around changes to Kubernetes resources.
|
// Package rest defines common logic around changes to Kubernetes resources.
|
||||||
package rest
|
package rest // import "k8s.io/kubernetes/pkg/api/rest"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// +k8s:deepcopy-gen=package
|
// +k8s:deepcopy-gen=package
|
||||||
|
|
||||||
package unversioned
|
package unversioned // import "k8s.io/kubernetes/pkg/api/unversioned"
|
||||||
|
@ -18,4 +18,4 @@ limitations under the License.
|
|||||||
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/api
|
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/api
|
||||||
|
|
||||||
// Package v1 is the v1 version of the API.
|
// Package v1 is the v1 version of the API.
|
||||||
package v1
|
package v1 // import "k8s.io/kubernetes/pkg/api/v1"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package validation has functions for validating the correctness of api
|
// Package validation has functions for validating the correctness of api
|
||||||
// objects and explaining what is wrong with them when they aren't valid.
|
// objects and explaining what is wrong with them when they aren't valid.
|
||||||
package validation
|
package validation // import "k8s.io/kubernetes/pkg/api/validation"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// Package apimachinery contains the generic API machinery code that
|
// Package apimachinery contains the generic API machinery code that
|
||||||
// is common to both server and clients.
|
// is common to both server and clients.
|
||||||
// This package should never import specific API objects.
|
// This package should never import specific API objects.
|
||||||
package apimachinery
|
package apimachinery // import "k8s.io/kubernetes/pkg/apimachinery"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
|
|
||||||
package apps
|
package apps // import "k8s.io/kubernetes/pkg/apis/apps"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/apps
|
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/apps
|
||||||
|
|
||||||
package v1alpha1
|
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/apps/v1alpha1"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
|
|
||||||
package authentication
|
package authentication // import "k8s.io/kubernetes/pkg/apis/authentication.k8s.io"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/authentication.k8s.io
|
// +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"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
|
|
||||||
package authorization
|
package authorization // import "k8s.io/kubernetes/pkg/apis/authorization"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/authorization
|
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/authorization
|
||||||
|
|
||||||
package v1beta1
|
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/authorization/v1beta1"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
|
|
||||||
package autoscaling
|
package autoscaling // import "k8s.io/kubernetes/pkg/apis/autoscaling"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/autoscaling
|
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/autoscaling
|
||||||
|
|
||||||
package v1
|
package v1 // import "k8s.io/kubernetes/pkg/apis/autoscaling/v1"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
|
|
||||||
package batch
|
package batch // import "k8s.io/kubernetes/pkg/apis/batch"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/batch
|
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/batch
|
||||||
|
|
||||||
package v1
|
package v1 // import "k8s.io/kubernetes/pkg/apis/batch/v1"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/batch
|
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/batch
|
||||||
|
|
||||||
package v2alpha1
|
package v2alpha1 // import "k8s.io/kubernetes/pkg/apis/batch/v2alpha1"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
|
|
||||||
package certificates
|
package certificates // import "k8s.io/kubernetes/pkg/apis/certificates"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/certificates
|
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/certificates
|
||||||
|
|
||||||
package v1alpha1
|
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/certificates/v1alpha1"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
|
|
||||||
package componentconfig
|
package componentconfig // import "k8s.io/kubernetes/pkg/apis/componentconfig"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/componentconfig
|
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/componentconfig
|
||||||
|
|
||||||
package v1alpha1
|
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
|
|
||||||
package extensions
|
package extensions // import "k8s.io/kubernetes/pkg/apis/extensions"
|
||||||
|
@ -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/autoscaling
|
||||||
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/batch
|
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/batch
|
||||||
|
|
||||||
package v1beta1
|
package v1beta1 // import "k8s.io/kubernetes/pkg/apis/extensions/v1beta1"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
|
|
||||||
package policy
|
package policy // import "k8s.io/kubernetes/pkg/apis/policy"
|
||||||
|
@ -20,4 +20,4 @@ limitations under the License.
|
|||||||
// Package policy is for any kind of policy object. Suitable examples, even if
|
// Package policy is for any kind of policy object. Suitable examples, even if
|
||||||
// they aren't all here, are PodDisruptionBudget, PodSecurityPolicy,
|
// they aren't all here, are PodDisruptionBudget, PodSecurityPolicy,
|
||||||
// NetworkPolicy, etc.
|
// NetworkPolicy, etc.
|
||||||
package v1alpha1
|
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/policy/v1alpha1"
|
||||||
|
@ -17,4 +17,4 @@ limitations under the License.
|
|||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
|
|
||||||
// +groupName=rbac.authorization.k8s.io
|
// +groupName=rbac.authorization.k8s.io
|
||||||
package rbac
|
package rbac // import "k8s.io/kubernetes/pkg/apis/rbac"
|
||||||
|
@ -18,4 +18,4 @@ limitations under the License.
|
|||||||
// +k8s:deepcopy-gen=package,register
|
// +k8s:deepcopy-gen=package,register
|
||||||
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/rbac
|
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/rbac
|
||||||
|
|
||||||
package v1alpha1
|
package v1alpha1 // import "k8s.io/kubernetes/pkg/apis/rbac/v1alpha1"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Package apiserver contains the code that provides a rest.ful api service.
|
// Package apiserver contains the code that provides a rest.ful api service.
|
||||||
package apiserver
|
package apiserver // import "k8s.io/kubernetes/pkg/apiserver"
|
||||||
|
@ -16,4 +16,4 @@ limitations under the License.
|
|||||||
|
|
||||||
// Package user contains utilities for dealing with simple user exchange in the auth
|
// 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.
|
// packages. The user.Info interface defines an interface for exchanging that info.
|
||||||
package user
|
package user // import "k8s.io/kubernetes/pkg/auth/user"
|
||||||
|
@ -15,4 +15,4 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// package capabilities manages system level capabilities
|
// package capabilities manages system level capabilities
|
||||||
package capabilities
|
package capabilities // import "k8s.io/kubernetes/pkg/capabilities"
|
||||||
|
2
pkg/client/cache/doc.go
vendored
2
pkg/client/cache/doc.go
vendored
@ -21,4 +21,4 @@ limitations under the License.
|
|||||||
// list currently available nodes), and one that additionally acts as
|
// list currently available nodes), and one that additionally acts as
|
||||||
// a FIFO queue (for example, to allow a scheduler to process incoming
|
// a FIFO queue (for example, to allow a scheduler to process incoming
|
||||||
// pods).
|
// pods).
|
||||||
package cache
|
package cache // import "k8s.io/kubernetes/pkg/client/cache"
|
||||||
|
@ -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 is generated by client-gen with arguments: --clientset-name=release_1_2 --input=[api/v1,extensions/v1beta1]
|
||||||
|
|
||||||
// This package has the automatically generated clientset.
|
// 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
Loading…
Reference in New Issue
Block a user