grep sed ExperimentalClient

This commit is contained in:
Chao Xu
2015-10-12 11:06:42 -07:00
parent 9aa163aa88
commit 9a812bd0c5
12 changed files with 26 additions and 26 deletions

View File

@@ -128,7 +128,7 @@ type APIStatus interface {
// Client is the implementation of a Kubernetes client.
type Client struct {
*RESTClient
*ExperimentalClient
*ExtensionsClient
}
// ServerVersion retrieves and parses the server's version.
@@ -244,5 +244,5 @@ func IsTimeout(err error) bool {
}
func (c *Client) Experimental() ExtensionsInterface {
return c.ExperimentalClient
return c.ExtensionsClient
}