Skip to content

Commit edf8d47

Browse files
committed
apps: generate apps expansion
1 parent 311b38c commit edf8d47

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-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,16 @@
11
package v1
22

3-
type DeploymentConfigExpansion interface{}
3+
type DeploymentConfigExpansion interface {
4+
Instantiate(*v1.DeploymentRequest) (*v1.DeploymentConfig, error)
5+
}
6+
7+
// Instantiate takes the representation of a deploymentConfig and creates it. Returns the server's representation of the deploymentConfig, and an error, if there is any.
8+
func (c *deploymentConfigs) Instantiate(deploymentConfig *v1.DeploymentRequest) (result *v1.DeploymentConfig, err error) {
9+
result = &v1.DeploymentConfig{}
10+
err = c.client.Post().
11+
Resource("deploymentconfigs").Name(deploymentConfig.Name).SubResource("instantiate").
12+
Body(deploymentConfig).
13+
Do().
14+
Into(result)
15+
return
16+
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
11
package internalversion
22

3-
type DeploymentConfigExpansion interface{}
3+
type DeploymentConfigExpansion interface {
4+
Instantiate(*apps.DeploymentRequest) (*apps.DeploymentConfig, error)
5+
}
6+
7+
// Instantiate takes the representation of a deploymentConfig and creates it. Returns the server's representation of the deploymentConfig, and an error, if there is any.
8+
func (c *deploymentConfigs) Instantiate(deploymentConfig *apps.DeploymentRequest) (result *apps.DeploymentConfig, err error) {
9+
result = &apps.DeploymentConfig{}
10+
err = c.client.Post().
11+
Resource("deploymentconfigs").Name(deploymentConfig.Name).SubResource("instantiate").
12+
Body(deploymentConfig).
13+
Do().
14+
Into(result)
15+
return
16+
}

0 commit comments

Comments
 (0)