Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions core-services/prow/02_config/_boskos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ resources:
min-count: 1
state: free
type: aro-hcp-int-quota-slice
- names:
- aro-hcp-int-shard0-slot-00
state: free
type: aro-hcp-int-shard0-slot
- names:
- aro-hcp-msi-mock-cs-sp-dev-0
- aro-hcp-msi-mock-cs-sp-dev-1
Expand Down Expand Up @@ -142,6 +146,10 @@ resources:
min-count: 1
state: free
type: aro-hcp-stg-quota-slice
- names:
- aro-hcp-stg-shard0-slot-00
state: free
type: aro-hcp-stg-shard0-slot
- names:
- aro-hcp-test-msi-containers-dev-0
- aro-hcp-test-msi-containers-dev-1
Expand Down
6 changes: 6 additions & 0 deletions core-services/prow/02_config/generate-boskos.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,8 @@
'aro-hcp-dev-shard0-slot': {},
'aro-hcp-dev-shard2-slot': {},
'aro-hcp-dev-shard3-slot': {},
'aro-hcp-int-shard0-slot': {},
'aro-hcp-stg-shard0-slot': {},
# END ARO-HCP E2E SLOT TYPES
'aro-hcp-msi-mock-cs-sp-dev': {},
'equinix-ocp-metal-quota-slice': {
Expand Down Expand Up @@ -783,6 +785,10 @@
CONFIG['aro-hcp-dev-shard2-slot']['aro-hcp-dev-shard2-slot-{i:0>2}'.format(i=i)] = 1
for i in range(1):
CONFIG['aro-hcp-dev-shard3-slot']['aro-hcp-dev-shard3-slot-{i:0>2}'.format(i=i)] = 1
for i in range(1):
CONFIG['aro-hcp-int-shard0-slot']['aro-hcp-int-shard0-slot-{i:0>2}'.format(i=i)] = 1
for i in range(1):
CONFIG['aro-hcp-stg-shard0-slot']['aro-hcp-stg-shard0-slot-{i:0>2}'.format(i=i)] = 1
# END ARO-HCP E2E SLOT RESOURCES
for i in range(20):
CONFIG['aro-hcp-msi-mock-cs-sp-dev']['aro-hcp-msi-mock-cs-sp-dev-{}'.format(i)] = 1
Expand Down