Skip to content

Commit 365a41e

Browse files
committed
apps: add Instantiate, GetScale and UpdateScale client method for deployment config
1 parent cad1607 commit 365a41e

File tree

6 files changed

+168
-0
lines changed

6 files changed

+168
-0
lines changed

pkg/deploy/apis/apps/types.go

+3
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ const (
123123
)
124124

125125
// +genclient
126+
// +genclient:method=Instantiate,verb=create,subresource=instantiate,input=DeploymentRequest
127+
// +genclient:method=GetScale,verb=get,subresource=scale,result=k8s.io/kubernetes/pkg/apis/extensions/v1beta1.Scale
128+
// +genclient:method=UpdateScale,verb=update,subresource=scale,input=k8s.io/kubernetes/pkg/apis/extensions/v1beta1.Scale,result=k8s.io/kubernetes/pkg/apis/extensions/v1beta1.Scale
126129

127130
// DeploymentConfig represents a configuration for a single deployment (represented as a
128131
// ReplicationController). It also contains details about changes which resulted in the current

pkg/deploy/apis/apps/v1/types.go

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ import (
99
)
1010

1111
// +genclient
12+
// +genclient:method=Instantiate,verb=create,subresource=instantiate,input=DeploymentRequest
13+
// +genclient:method=GetScale,verb=get,subresource=scale,result=k8s.io/kubernetes/pkg/apis/extensions/v1beta1.Scale
14+
// +genclient:method=UpdateScale,verb=update,subresource=scale,input=k8s.io/kubernetes/pkg/apis/extensions/v1beta1.Scale,result=k8s.io/kubernetes/pkg/apis/extensions/v1beta1.Scale
1215

1316
// Deployment Configs define the template for a pod and manages deploying new images or configuration changes.
1417
// A single deployment configuration is usually analogous to a single micro-service. Can support many different

pkg/deploy/generated/clientset/typed/apps/v1/deploymentconfig.go

+47
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
types "k8s.io/apimachinery/pkg/types"
88
watch "k8s.io/apimachinery/pkg/watch"
99
rest "k8s.io/client-go/rest"
10+
v1beta1 "k8s.io/kubernetes/pkg/apis/extensions/v1beta1"
1011
)
1112

1213
// DeploymentConfigsGetter has a method to return a DeploymentConfigInterface.
@@ -26,6 +27,10 @@ type DeploymentConfigInterface interface {
2627
List(opts meta_v1.ListOptions) (*v1.DeploymentConfigList, error)
2728
Watch(opts meta_v1.ListOptions) (watch.Interface, error)
2829
Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.DeploymentConfig, err error)
30+
Instantiate(deploymentConfigName string, deploymentRequest *v1.DeploymentRequest) (*v1.DeploymentConfig, error)
31+
GetScale(deploymentConfigName string, options meta_v1.GetOptions) (*v1beta1.Scale, error)
32+
UpdateScale(deploymentConfigName string, scale *v1beta1.Scale) (*v1beta1.Scale, error)
33+
2934
DeploymentConfigExpansion
3035
}
3136

@@ -154,3 +159,45 @@ func (c *deploymentConfigs) Patch(name string, pt types.PatchType, data []byte,
154159
Into(result)
155160
return
156161
}
162+
163+
// Instantiate takes the representation of a deploymentRequest and creates it. Returns the server's representation of the deploymentConfig, and an error, if there is any.
164+
func (c *deploymentConfigs) Instantiate(deploymentConfigName string, deploymentRequest *v1.DeploymentRequest) (result *v1.DeploymentConfig, err error) {
165+
result = &v1.DeploymentConfig{}
166+
err = c.client.Post().
167+
Namespace(c.ns).
168+
Resource("deploymentconfigs").
169+
Name(deploymentConfigName).
170+
SubResource("instantiate").
171+
Body(deploymentRequest).
172+
Do().
173+
Into(result)
174+
return
175+
}
176+
177+
// GetScale takes name of the deploymentConfig, and returns the corresponding v1beta1.Scale object, and an error if there is any.
178+
func (c *deploymentConfigs) GetScale(deploymentConfigName string, options meta_v1.GetOptions) (result *v1beta1.Scale, err error) {
179+
result = &v1beta1.Scale{}
180+
err = c.client.Get().
181+
Namespace(c.ns).
182+
Resource("deploymentconfigs").
183+
Name(deploymentConfigName).
184+
SubResource("scale").
185+
VersionedParams(&options, scheme.ParameterCodec).
186+
Do().
187+
Into(result)
188+
return
189+
}
190+
191+
// UpdateScale takes the top resource name and the representation of a scale and updates it. Returns the server's representation of the scale, and an error, if there is any.
192+
func (c *deploymentConfigs) UpdateScale(deploymentConfigName string, scale *v1beta1.Scale) (result *v1beta1.Scale, err error) {
193+
result = &v1beta1.Scale{}
194+
err = c.client.Put().
195+
Namespace(c.ns).
196+
Resource("deploymentconfigs").
197+
Name(deploymentConfigName).
198+
SubResource("scale").
199+
Body(scale).
200+
Do().
201+
Into(result)
202+
return
203+
}

pkg/deploy/generated/clientset/typed/apps/v1/fake/fake_deploymentconfig.go

+34
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
types "k8s.io/apimachinery/pkg/types"
99
watch "k8s.io/apimachinery/pkg/watch"
1010
testing "k8s.io/client-go/testing"
11+
v1beta1 "k8s.io/kubernetes/pkg/apis/extensions/v1beta1"
1112
)
1213

1314
// FakeDeploymentConfigs implements DeploymentConfigInterface
@@ -120,3 +121,36 @@ func (c *FakeDeploymentConfigs) Patch(name string, pt types.PatchType, data []by
120121
}
121122
return obj.(*apps_v1.DeploymentConfig), err
122123
}
124+
125+
// Instantiate takes the representation of a deploymentRequest and creates it. Returns the server's representation of the deploymentConfig, and an error, if there is any.
126+
func (c *FakeDeploymentConfigs) Instantiate(deploymentConfigName string, deploymentRequest *apps_v1.DeploymentRequest) (result *apps_v1.DeploymentConfig, err error) {
127+
obj, err := c.Fake.
128+
Invokes(testing.NewCreateSubresourceAction(deploymentconfigsResource, deploymentConfigName, "instantiate", c.ns, deploymentRequest), &apps_v1.DeploymentRequest{})
129+
130+
if obj == nil {
131+
return nil, err
132+
}
133+
return obj.(*apps_v1.DeploymentConfig), err
134+
}
135+
136+
// GetScale takes name of the deploymentConfig, and returns the corresponding deploymentConfig object, and an error if there is any.
137+
func (c *FakeDeploymentConfigs) GetScale(deploymentConfigName string, options v1.GetOptions) (result *v1beta1.Scale, err error) {
138+
obj, err := c.Fake.
139+
Invokes(testing.NewGetSubresourceAction(deploymentconfigsResource, c.ns, "scale", deploymentConfigName), &v1beta1.Scale{})
140+
141+
if obj == nil {
142+
return nil, err
143+
}
144+
return obj.(*v1beta1.Scale), err
145+
}
146+
147+
// UpdateScale takes the representation of a scale and updates it. Returns the server's representation of the scale, and an error, if there is any.
148+
func (c *FakeDeploymentConfigs) UpdateScale(deploymentConfigName string, scale *v1beta1.Scale) (result *v1beta1.Scale, err error) {
149+
obj, err := c.Fake.
150+
Invokes(testing.NewUpdateSubresourceAction(deploymentconfigsResource, "scale", c.ns, scale), &v1beta1.Scale{})
151+
152+
if obj == nil {
153+
return nil, err
154+
}
155+
return obj.(*v1beta1.Scale), err
156+
}

pkg/deploy/generated/internalclientset/typed/apps/internalversion/deploymentconfig.go

+47
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
types "k8s.io/apimachinery/pkg/types"
88
watch "k8s.io/apimachinery/pkg/watch"
99
rest "k8s.io/client-go/rest"
10+
v1beta1 "k8s.io/kubernetes/pkg/apis/extensions/v1beta1"
1011
)
1112

1213
// DeploymentConfigsGetter has a method to return a DeploymentConfigInterface.
@@ -26,6 +27,10 @@ type DeploymentConfigInterface interface {
2627
List(opts v1.ListOptions) (*apps.DeploymentConfigList, error)
2728
Watch(opts v1.ListOptions) (watch.Interface, error)
2829
Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *apps.DeploymentConfig, err error)
30+
Instantiate(deploymentConfigName string, deploymentRequest *apps.DeploymentRequest) (*apps.DeploymentConfig, error)
31+
GetScale(deploymentConfigName string, options v1.GetOptions) (*v1beta1.Scale, error)
32+
UpdateScale(deploymentConfigName string, scale *v1beta1.Scale) (*v1beta1.Scale, error)
33+
2934
DeploymentConfigExpansion
3035
}
3136

@@ -154,3 +159,45 @@ func (c *deploymentConfigs) Patch(name string, pt types.PatchType, data []byte,
154159
Into(result)
155160
return
156161
}
162+
163+
// Instantiate takes the representation of a deploymentRequest and creates it. Returns the server's representation of the deploymentConfig, and an error, if there is any.
164+
func (c *deploymentConfigs) Instantiate(deploymentConfigName string, deploymentRequest *apps.DeploymentRequest) (result *apps.DeploymentConfig, err error) {
165+
result = &apps.DeploymentConfig{}
166+
err = c.client.Post().
167+
Namespace(c.ns).
168+
Resource("deploymentconfigs").
169+
Name(deploymentConfigName).
170+
SubResource("instantiate").
171+
Body(deploymentRequest).
172+
Do().
173+
Into(result)
174+
return
175+
}
176+
177+
// GetScale takes name of the deploymentConfig, and returns the corresponding v1beta1.Scale object, and an error if there is any.
178+
func (c *deploymentConfigs) GetScale(deploymentConfigName string, options v1.GetOptions) (result *v1beta1.Scale, err error) {
179+
result = &v1beta1.Scale{}
180+
err = c.client.Get().
181+
Namespace(c.ns).
182+
Resource("deploymentconfigs").
183+
Name(deploymentConfigName).
184+
SubResource("scale").
185+
VersionedParams(&options, scheme.ParameterCodec).
186+
Do().
187+
Into(result)
188+
return
189+
}
190+
191+
// UpdateScale takes the top resource name and the representation of a scale and updates it. Returns the server's representation of the scale, and an error, if there is any.
192+
func (c *deploymentConfigs) UpdateScale(deploymentConfigName string, scale *v1beta1.Scale) (result *v1beta1.Scale, err error) {
193+
result = &v1beta1.Scale{}
194+
err = c.client.Put().
195+
Namespace(c.ns).
196+
Resource("deploymentconfigs").
197+
Name(deploymentConfigName).
198+
SubResource("scale").
199+
Body(scale).
200+
Do().
201+
Into(result)
202+
return
203+
}

pkg/deploy/generated/internalclientset/typed/apps/internalversion/fake/fake_deploymentconfig.go

+34
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
types "k8s.io/apimachinery/pkg/types"
99
watch "k8s.io/apimachinery/pkg/watch"
1010
testing "k8s.io/client-go/testing"
11+
v1beta1 "k8s.io/kubernetes/pkg/apis/extensions/v1beta1"
1112
)
1213

1314
// FakeDeploymentConfigs implements DeploymentConfigInterface
@@ -120,3 +121,36 @@ func (c *FakeDeploymentConfigs) Patch(name string, pt types.PatchType, data []by
120121
}
121122
return obj.(*apps.DeploymentConfig), err
122123
}
124+
125+
// Instantiate takes the representation of a deploymentRequest and creates it. Returns the server's representation of the deploymentConfig, and an error, if there is any.
126+
func (c *FakeDeploymentConfigs) Instantiate(deploymentConfigName string, deploymentRequest *apps.DeploymentRequest) (result *apps.DeploymentConfig, err error) {
127+
obj, err := c.Fake.
128+
Invokes(testing.NewCreateSubresourceAction(deploymentconfigsResource, deploymentConfigName, "instantiate", c.ns, deploymentRequest), &apps.DeploymentRequest{})
129+
130+
if obj == nil {
131+
return nil, err
132+
}
133+
return obj.(*apps.DeploymentConfig), err
134+
}
135+
136+
// GetScale takes name of the deploymentConfig, and returns the corresponding deploymentConfig object, and an error if there is any.
137+
func (c *FakeDeploymentConfigs) GetScale(deploymentConfigName string, options v1.GetOptions) (result *v1beta1.Scale, err error) {
138+
obj, err := c.Fake.
139+
Invokes(testing.NewGetSubresourceAction(deploymentconfigsResource, c.ns, "scale", deploymentConfigName), &v1beta1.Scale{})
140+
141+
if obj == nil {
142+
return nil, err
143+
}
144+
return obj.(*v1beta1.Scale), err
145+
}
146+
147+
// UpdateScale takes the representation of a scale and updates it. Returns the server's representation of the scale, and an error, if there is any.
148+
func (c *FakeDeploymentConfigs) UpdateScale(deploymentConfigName string, scale *v1beta1.Scale) (result *v1beta1.Scale, err error) {
149+
obj, err := c.Fake.
150+
Invokes(testing.NewUpdateSubresourceAction(deploymentconfigsResource, "scale", c.ns, scale), &v1beta1.Scale{})
151+
152+
if obj == nil {
153+
return nil, err
154+
}
155+
return obj.(*v1beta1.Scale), err
156+
}

0 commit comments

Comments
 (0)