Commit e243ca81 authored by Matt Butcher's avatar Matt Butcher

Fix package documentation on pkg/client/unversioned.

The package documentation seems to reflect an older version of the API.
parent 625a64c9
...@@ -15,14 +15,14 @@ limitations under the License. ...@@ -15,14 +15,14 @@ limitations under the License.
*/ */
/* /*
Package client contains the implementation of the client side communication with the Package unversioned contains the implementation of the client side communication with the
Kubernetes master. The Client class provides methods for reading, creating, updating, Kubernetes master. The Client class provides methods for reading, creating, updating,
and deleting pods, replication controllers, daemons, services, and nodes. and deleting pods, replication controllers, daemons, services, and nodes.
Most consumers should use the Config object to create a Client: Most consumers should use the Config object to create a Client:
import ( import (
"k8s.io/kubernetes/pkg/client" client "k8s.io/kubernetes/pkg/client/unversioned"
"k8s.io/kubernetes/pkg/api" "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/fields" "k8s.io/kubernetes/pkg/fields"
"k8s.io/kubernetes/pkg/labels" "k8s.io/kubernetes/pkg/labels"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment