2017-11-20 09:30:52 -05:00
|
|
|
package clientset
|
|
|
|
|
2018-12-19 10:36:25 -05:00
|
|
|
import api "github.com/docker/compose-on-kubernetes/api/client/clientset"
|
2017-11-20 09:30:52 -05:00
|
|
|
|
2018-01-31 09:37:14 -05:00
|
|
|
// Interface defines the methods a compose kube client should have
|
2018-12-19 10:36:25 -05:00
|
|
|
// Deprecated: Use github.com/docker/compose-on-kubernetes/api/client/clientset.Interface instead
|
|
|
|
type Interface = api.Interface
|
2017-11-20 09:30:52 -05:00
|
|
|
|
|
|
|
// Clientset contains the clients for groups. Each group has exactly one
|
|
|
|
// version included in a Clientset.
|
2018-12-19 10:36:25 -05:00
|
|
|
// Deprecated: Use github.com/docker/compose-on-kubernetes/api/client/clientset.Clientset instead
|
|
|
|
type Clientset = api.Clientset
|
2017-11-20 09:30:52 -05:00
|
|
|
|
|
|
|
// NewForConfig creates a new Clientset for the given config.
|
2018-12-19 10:36:25 -05:00
|
|
|
// Deprecated: Use github.com/docker/compose-on-kubernetes/api/client/clientset.NewForConfig instead
|
|
|
|
var NewForConfig = api.NewForConfig
|
2017-11-20 09:30:52 -05:00
|
|
|
|
|
|
|
// NewForConfigOrDie creates a new Clientset for the given config and
|
|
|
|
// panics if there is an error in the config.
|
2018-12-19 10:36:25 -05:00
|
|
|
// Deprecated: Use github.com/docker/compose-on-kubernetes/api/client/clientset.NewForConfigOrDie instead
|
|
|
|
var NewForConfigOrDie = api.NewForConfigOrDie
|
2017-11-20 09:30:52 -05:00
|
|
|
|
|
|
|
// New creates a new Clientset for the given RESTClient.
|
2018-12-19 10:36:25 -05:00
|
|
|
// Deprecated: Use github.com/docker/compose-on-kubernetes/api/client/clientset.New instead
|
|
|
|
var New = api.New
|