github.com/ali-iotechsys/cli@v20.10.0+incompatible/kubernetes/client/clientset/clientset.go (about)

     1  package clientset
     2  
     3  import api "github.com/docker/compose-on-kubernetes/api/client/clientset"
     4  
     5  // Interface defines the methods a compose kube client should have
     6  // Deprecated: Use github.com/docker/compose-on-kubernetes/api/client/clientset.Interface instead
     7  type Interface = api.Interface
     8  
     9  // Clientset contains the clients for groups. Each group has exactly one
    10  // version included in a Clientset.
    11  // Deprecated: Use github.com/docker/compose-on-kubernetes/api/client/clientset.Clientset instead
    12  type Clientset = api.Clientset
    13  
    14  // NewForConfig creates a new Clientset for the given config.
    15  // Deprecated: Use github.com/docker/compose-on-kubernetes/api/client/clientset.NewForConfig instead
    16  var NewForConfig = api.NewForConfig
    17  
    18  // NewForConfigOrDie creates a new Clientset for the given config and
    19  // panics if there is an error in the config.
    20  // Deprecated: Use github.com/docker/compose-on-kubernetes/api/client/clientset.NewForConfigOrDie instead
    21  var NewForConfigOrDie = api.NewForConfigOrDie
    22  
    23  // New creates a new Clientset for the given RESTClient.
    24  // Deprecated: Use github.com/docker/compose-on-kubernetes/api/client/clientset.New instead
    25  var New = api.New