Skip to content

Commit e0a027a

Browse files
committed
apps: add instantiate expansion for deployment configs
1 parent ed24bf0 commit e0a027a

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

pkg/deploy/apis/apps/types.go

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

125125
// +genclient
126+
// +genclient:createInstantiateVerb=subresource=instantiate,input=DeploymentRequest
126127

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

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

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

1111
// +genclient
12+
// +genclient:createInstantiateVerb=subresource=instantiate,input=DeploymentRequest
1213

1314
// Deployment Configs define the template for a pod and manages deploying new images or configuration changes.
1415
// 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

+13
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ type DeploymentConfigInterface interface {
2626
List(opts meta_v1.ListOptions) (*v1.DeploymentConfigList, error)
2727
Watch(opts meta_v1.ListOptions) (watch.Interface, error)
2828
Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.DeploymentConfig, err error)
29+
Instantiate(*v1.DeploymentRequest) (*v1.DeploymentConfig, error)
2930
DeploymentConfigExpansion
3031
}
3132

@@ -154,3 +155,15 @@ func (c *deploymentConfigs) Patch(name string, pt types.PatchType, data []byte,
154155
Into(result)
155156
return
156157
}
158+
159+
// 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.
160+
func (c *deploymentConfigs) Instantiate(deploymentRequest *v1.DeploymentRequest) (result *v1.DeploymentConfig, err error) {
161+
result = &v1.DeploymentConfig{}
162+
err = c.client.Post().
163+
Namespace(c.ns).
164+
Resource("deploymentconfigs").Name(deploymentRequest.Name).SubResource("instantiate").
165+
Body(deploymentRequest).
166+
Do().
167+
Into(result)
168+
return
169+
}

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

+13
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ type DeploymentConfigInterface interface {
2626
List(opts v1.ListOptions) (*apps.DeploymentConfigList, error)
2727
Watch(opts v1.ListOptions) (watch.Interface, error)
2828
Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *apps.DeploymentConfig, err error)
29+
Instantiate(*apps.DeploymentRequest) (*apps.DeploymentConfig, error)
2930
DeploymentConfigExpansion
3031
}
3132

@@ -154,3 +155,15 @@ func (c *deploymentConfigs) Patch(name string, pt types.PatchType, data []byte,
154155
Into(result)
155156
return
156157
}
158+
159+
// 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.
160+
func (c *deploymentConfigs) Instantiate(deploymentRequest *apps.DeploymentRequest) (result *apps.DeploymentConfig, err error) {
161+
result = &apps.DeploymentConfig{}
162+
err = c.client.Post().
163+
Namespace(c.ns).
164+
Resource("deploymentconfigs").Name(deploymentRequest.Name).SubResource("instantiate").
165+
Body(deploymentRequest).
166+
Do().
167+
Into(result)
168+
return
169+
}

0 commit comments

Comments
 (0)