Skip to content

Commit 4b2c587

Browse files
feat: add openshift-org-aws for testing (#75915)
1 parent b5df18a commit 4b2c587

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

core-services/prow/02_config/_boskos.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5546,3 +5546,8 @@ resources:
55465546
- bcr03a.dal10.1302
55475547
state: free
55485548
type: vsphere-multizone-2-quota-slice
5549+
- names:
5550+
- aws--us-east-1--openshift-org-aws-quota-slice-00
5551+
- aws-2--us-east-2--openshift-org-aws-quota-slice-01
5552+
state: free
5553+
type: openshift-org-aws-quota-slice

core-services/prow/02_config/generate-boskos.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -740,6 +740,13 @@
740740
resource['names'].append(name)
741741
config['resources'].append(resource)
742742

743+
# XXX: For testing purposes only, remove ASAP.
744+
config['resources'].append({
745+
'type': 'openshift-org-aws-quota-slice',
746+
'state': 'free',
747+
'names': ['aws--us-east-1--openshift-org-aws-quota-slice-00','aws-2--us-east-2--openshift-org-aws-quota-slice-01']
748+
})
749+
743750
with open('_boskos.yaml', 'w') as f:
744751
f.write('# generated with generate-boskos.py; do not edit directly\n')
745752
yaml.dump(config, f, default_flow_style=False)

0 commit comments

Comments
 (0)