interesting changes to add tokenreviews endpoint to implement webhook

This commit is contained in:
deads2k
2016-07-19 14:47:53 -04:00
parent eb79e2c859
commit 60dd4a5d26
29 changed files with 491 additions and 30 deletions

View File

@@ -46,6 +46,7 @@ type Interface interface {
ConfigMapsNamespacer
Apps() AppsInterface
Autoscaling() AutoscalingInterface
Authentication() AuthenticationInterface
Batch() BatchInterface
Extensions() ExtensionsInterface
Rbac() RbacInterface
@@ -120,6 +121,7 @@ func (c *Client) ConfigMaps(namespace string) ConfigMapsInterface {
type Client struct {
*restclient.RESTClient
*AutoscalingClient
*AuthenticationClient
*BatchClient
*ExtensionsClient
*AppsClient
@@ -155,6 +157,10 @@ func (c *Client) Autoscaling() AutoscalingInterface {
return c.AutoscalingClient
}
func (c *Client) Authentication() AuthenticationInterface {
return c.AuthenticationClient
}
func (c *Client) Batch() BatchInterface {
return c.BatchClient
}