Skip to content

Commit 1f01937

Browse files
committed
apps: add instantiate expansion for deployment configs
1 parent f68617e commit 1f01937

File tree

4 files changed

+38
-2
lines changed

4 files changed

+38
-2
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
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
11
package v1
22

3-
type DeploymentConfigExpansion interface{}
3+
import (
4+
v1 "github.com/openshift/origin/pkg/deploy/apis/apps/v1"
5+
)
6+
7+
type DeploymentConfigExpansion interface {
8+
Instantiate(*v1.DeploymentRequest) (*v1.DeploymentConfig, error)
9+
}
10+
11+
// 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.
12+
func (c *deploymentConfigs) Instantiate(deploymentRequest *v1.DeploymentRequest) (result *v1.DeploymentConfig, err error) {
13+
result = &v1.DeploymentConfig{}
14+
err = c.client.Post().
15+
Resource("deploymentconfigs").Name(deploymentRequest.Name).SubResource("instantiate").
16+
Body(deploymentRequest).
17+
Do().
18+
Into(result)
19+
return
20+
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
11
package internalversion
22

3-
type DeploymentConfigExpansion interface{}
3+
import (
4+
apps "github.com/openshift/origin/pkg/deploy/apis/apps"
5+
)
6+
7+
type DeploymentConfigExpansion interface {
8+
Instantiate(*apps.DeploymentRequest) (*apps.DeploymentConfig, error)
9+
}
10+
11+
// 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.
12+
func (c *deploymentConfigs) Instantiate(deploymentRequest *apps.DeploymentRequest) (result *apps.DeploymentConfig, err error) {
13+
result = &apps.DeploymentConfig{}
14+
err = c.client.Post().
15+
Resource("deploymentconfigs").Name(deploymentRequest.Name).SubResource("instantiate").
16+
Body(deploymentRequest).
17+
Do().
18+
Into(result)
19+
return
20+
}

0 commit comments

Comments
 (0)