1
0
mirror of https://github.com/rancher/types.git synced 2025-09-01 13:18:20 +00:00

generated changes

This commit is contained in:
Daishan Peng
2018-01-22 17:42:56 -07:00
committed by Darren Shepherd
parent 8a402f4698
commit f999bb990d
4 changed files with 13 additions and 2 deletions

View File

@@ -3,12 +3,12 @@ package client
const (
DeploymentParallelConfigType = "deploymentParallelConfig"
DeploymentParallelConfigFieldMinReadySeconds = "minReadySeconds"
DeploymentParallelConfigFieldProgressDeadlineSeconds = "progressDeadlineSeconds"
DeploymentParallelConfigFieldProgressDeadlineSeconds = "processDeadlineSeconds"
DeploymentParallelConfigFieldStartFirst = "startFirst"
)
type DeploymentParallelConfig struct {
MinReadySeconds *int64 `json:"minReadySeconds,omitempty"`
ProgressDeadlineSeconds *int64 `json:"progressDeadlineSeconds,omitempty"`
ProgressDeadlineSeconds *int64 `json:"processDeadlineSeconds,omitempty"`
StartFirst *bool `json:"startFirst,omitempty"`
}