Skip to content

Commit

Permalink
Test Automation - GKE | Preferred instances and instance family types (
Browse files Browse the repository at this point in the history
  • Loading branch information
ramrutha497 authored Oct 26, 2024
1 parent 62b776d commit 99a41dc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.17.1] - 2024-10-26
### Fixed
- `instance_name` field in the `Roll` model for Ocean GCP

## [3.17.0] - 2024-10-24
### Added
- "Detach Instances", "Instance Types Filters Simulation" API support added in the GCP Ocean Client
- Added Create/Update Cluster 'Preferred Instance Type' model for the GCP Ocean
- `Detach Instances` ans `Instance Types Filters Simulation` APIs support added in the GCP Ocean Client
- Added Create/Update Cluster `Preferred Instance Type` model for the GCP Ocean

## [3.16.1] - 2024-10-22
### Added
- "Delete Volume in a Stateful Instance" API support added in the AWS Elastigroup Client.
- `Delete Volume in a Stateful Instance` API support added in the AWS Elastigroup Client.
- Added `DynamicIops` model for AWS Elastigroup.

## [3.16.0] - 2024-10-21
Expand Down
2 changes: 1 addition & 1 deletion docs/models/ocean/gcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ Roll(
batch_size_percentage: int = 'd3043820717d74d9a17694c176d39733',
comment: str = 'd3043820717d74d9a17694c176d39733',
launch_spec_ids: typing.List[str] = 'd3043820717d74d9a17694c176d39733',
instance_ids: typing.List[str] = 'd3043820717d74d9a17694c176d39733',
instance_names: typing.List[str] = 'd3043820717d74d9a17694c176d39733',
respect_pdb: bool = 'd3043820717d74d9a17694c176d39733')
```

Expand Down
4 changes: 2 additions & 2 deletions spotinst_sdk2/models/ocean/gcp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -988,12 +988,12 @@ def __init__(
batch_size_percentage: int = none,
comment: str = none,
launch_spec_ids: List[str] = none,
instance_ids: List[str] = none,
instance_names: List[str] = none,
respect_pdb: bool = none):
self.batch_min_healthy_percentage = batch_min_healthy_percentage
self.batch_size_percentage = batch_size_percentage
self.comment = comment
self.instance_ids = instance_ids
self.instance_names = instance_names
self.launch_spec_ids = launch_spec_ids
self.respect_pdb = respect_pdb

Expand Down
2 changes: 1 addition & 1 deletion spotinst_sdk2/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '3.17.0'
__version__ = '3.17.1'

0 comments on commit 99a41dc

Please sign in to comment.