aws: allow to use gp3 storage type for fedimg

this is cheaper than gp2 see
https://fedoraproject.org/wiki/Changes/CloudEC2gp3
This commit is contained in:
Miroslav Suchý 2023-04-01 10:29:16 +02:00
parent 36eab9026b
commit 034cf953db
3 changed files with 5 additions and 5 deletions

View file

@ -688,8 +688,8 @@ openshift_hosted_metrics_deploy=true
#openshift_metrics_heapster_image="registry.access.redhat.com/openshift3/metrics-heapster:{ openshift_image_tag }"
#
# StorageClass
# openshift_storageclass_name=gp2
# openshift_storageclass_parameters={'type': 'gp2', 'encrypted': 'false'}
# openshift_storageclass_name=gp3
# openshift_storageclass_parameters={'type': 'gp3', 'encrypted': 'false'}
# openshift_storageclass_mount_options=['dir_mode=0777', 'file_mode=0777']
# openshift_storageclass_reclaim_policy="Delete"
#

View file

@ -669,8 +669,8 @@ openshift_hosted_metrics_deploy=true
#openshift_metrics_heapster_image="registry.access.redhat.com/openshift3/metrics-heapster:{ openshift_image_tag }"
#
# StorageClass
# openshift_storageclass_name=gp2
# openshift_storageclass_parameters={'type': 'gp2', 'encrypted': 'false'}
# openshift_storageclass_name=gp3
# openshift_storageclass_parameters={'type': 'gp3', 'encrypted': 'false'}
# openshift_storageclass_mount_options=['dir_mode=0777', 'file_mode=0777']
# openshift_storageclass_reclaim_policy="Delete"
#

View file

@ -24,7 +24,7 @@ regions = [ 'af-south-1', 'eu-north-1', 'ap-south-1', 'eu-west-3', 'eu-west-2',
'ap-northeast-1', 'sa-east-1', 'ca-central-1', 'ap-east-1', 'ap-southeast-1',
'ap-southeast-2', 'ap-southeast-3', 'eu-central-1', 'us-east-1', 'us-east-2',
'us-west-1', 'us-west-2' ]
volume_types = ['standard', 'gp2']
volume_types = ['standard', 'gp2', 'gp3']
[rackspace]
username = 'someuser'