Skip to content
Snippets Groups Projects
Commit 0cea7d08 authored by Josef Smrčka's avatar Josef Smrčka
Browse files

Merge branch 'jsmrcka-migrations' into 'master'

fix: flavor mapping for hpc.xlarge* and elixir.24core-256ram

See merge request !40
parents 79301743 9b4ab8f8
No related branches found
No related tags found
1 merge request!40fix: flavor mapping for hpc.xlarge* and elixir.24core-256ram
Pipeline #546581 failed
...@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [1.9.7] - 2024-12-03
### Fix
- Map `hpc.xlarge*` and `elixir.24core-256ram` to already present `c3` flavors with slightly less RAM.
## [1.9.6] - 2024-11-27 ## [1.9.6] - 2024-11-27
### Changed ### Changed
- --compare-quotas -> --skip-checks, misconcept to be reverted - --compare-quotas -> --skip-checks, misconcept to be reverted
......
...@@ -85,8 +85,9 @@ def get_destination_flavor(source_flavor): ...@@ -85,8 +85,9 @@ def get_destination_flavor(source_flavor):
'hpc.large': 'g2.3xlarge', # ok 'hpc.large': 'g2.3xlarge', # ok
'hpc.medium': 'c2.8core-30ram', # ok 'hpc.medium': 'c2.8core-30ram', # ok
'hpc.small': 'c2.4core-16ram', # ok 'hpc.small': 'c2.4core-16ram', # ok
'hpc.xlarge': None, # neni v G2 'hpc.xlarge': 'c3.24core-90ram', # ok
'hpc.xlarge-memory': 'c3.xlarge-memory', # neni v G2 'hpc.xlarge-memory': 'c3.24core-240ram', # ok
'elixir.24core-256ram': 'c3.24core-240ram', # ok
'elixir.60core-128ram': 'c3.60core-120ram', 'elixir.60core-128ram': 'c3.60core-120ram',
'standard.16core-32ram': 'e1.16core-30ram', # ok 'standard.16core-32ram': 'e1.16core-30ram', # ok
'standard.20core-128ram': 'e1.20core-128ram', # neni potreba 'standard.20core-128ram': 'e1.20core-128ram', # neni potreba
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment