Skip to content

Commit

Permalink
merge(#303): feat(EKS): added per request node pool volume size setting
Browse files Browse the repository at this point in the history
feat(EKS): added per request node pool volume size setting
#303
  • Loading branch information
pregnor authored Sep 21, 2020
2 parents 4d49e2e + 02ace20 commit 960abaf
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .gen/pipeline/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19158,6 +19158,10 @@ components:
example: '{"example.io/label1":"value1"}'
type: string
type: object
volumeSize:
description: Size of the EBS volume in GBs of the nodes in the pool.
example: 50
type: integer
image:
example: ami-06d1667f
type: string
Expand Down Expand Up @@ -23360,6 +23364,10 @@ components:
properties:
autoscaling:
$ref: '#/components/schemas/NodePoolAutoScaling'
volumeSize:
description: Size of the EBS volume in GBs of the nodes in the pool.
example: 50
type: integer
instanceType:
description: The instance type to use for your node pool.
example: m4.xlarge
Expand Down
1 change: 1 addition & 0 deletions .gen/pipeline/docs/EksNodePool.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Name | Type | Description | Notes
**MinCount** | **int32** | |
**MaxCount** | **int32** | |
**Labels** | **map[string]string** | | [optional]
**VolumeSize** | **int32** | Size of the EBS volume in GBs of the nodes in the pool. | [optional]
**Image** | **string** | | [optional]
**Subnet** | [**EksSubnet**](EKSSubnet.md) | | [optional]

Expand Down
1 change: 1 addition & 0 deletions .gen/pipeline/docs/EksUpdateNodePoolRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Name | Type | Description | Notes
**Size** | **int32** | Node pool size. |
**Labels** | **map[string]string** | Node pool labels. | [optional]
**Autoscaling** | [**NodePoolAutoScaling**](NodePoolAutoScaling.md) | | [optional]
**VolumeSize** | **int32** | Size of the EBS volume in GBs of the nodes in the pool. | [optional]
**InstanceType** | **string** | The instance type to use for your node pool. | [optional]
**Image** | **string** | The instance AMI to use for your node pool. | [optional]
**SpotPrice** | **string** | The upper limit price for the requested spot instance. If this field is empty or 0 on-demand instances are used instead of spot instances. | [optional]
Expand Down
1 change: 1 addition & 0 deletions .gen/pipeline/docs/EksUpdateNodePoolRequestAllOf.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Autoscaling** | [**NodePoolAutoScaling**](NodePoolAutoScaling.md) | | [optional]
**VolumeSize** | **int32** | Size of the EBS volume in GBs of the nodes in the pool. | [optional]
**InstanceType** | **string** | The instance type to use for your node pool. | [optional]
**Image** | **string** | The instance AMI to use for your node pool. | [optional]
**SpotPrice** | **string** | The upper limit price for the requested spot instance. If this field is empty or 0 on-demand instances are used instead of spot instances. | [optional]
Expand Down
1 change: 1 addition & 0 deletions .gen/pipeline/docs/UpdateNodePoolRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Name | Type | Description | Notes
**Size** | **int32** | Node pool size. |
**Labels** | **map[string]string** | Node pool labels. | [optional]
**Autoscaling** | [**NodePoolAutoScaling**](NodePoolAutoScaling.md) | | [optional]
**VolumeSize** | **int32** | Size of the EBS volume in GBs of the nodes in the pool. | [optional]
**InstanceType** | **string** | The instance type to use for your node pool. | [optional]
**Image** | **string** | The instance AMI to use for your node pool. | [optional]
**SpotPrice** | **string** | The upper limit price for the requested spot instance. If this field is empty or 0 on-demand instances are used instead of spot instances. | [optional]
Expand Down
2 changes: 2 additions & 0 deletions .gen/pipeline/model_eks_node_pool.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .gen/pipeline/model_eks_update_node_pool_request.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .gen/pipeline/model_eks_update_node_pool_request_all_of.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .gen/pipeline/model_update_node_pool_request.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .gen/pipeline/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package pipeline

const PipelineVersion = "0.57.0"
const PipelineVersion = "feat/3131,3132,3134/make-volume-size-per-request-configurable"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ endif
TEST_FORMAT = short-verbose
endif

PIPELINE_VERSION = 0.57.0
PIPELINE_VERSION = 0.58.0
CLOUDINFO_VERSION = 0.13.0
TELESCOPES_VERSION = 0.5.3

Expand Down

0 comments on commit 960abaf

Please sign in to comment.