Skip to content

Commit

Permalink
feat: Fixed a bug when assigning stemcell_ids
Browse files Browse the repository at this point in the history
- Stemcell ids is an array and not a string

Co-authored-by: Joe Eltgroth <[email protected]>
Co-authored-by: Ramkumar Vengadakrishnan <[email protected]>
  • Loading branch information
joeeltgroth and ram-pivot committed Nov 21, 2024
1 parent efcd730 commit 58d40b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tile_generator/opsmgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def configure(product, properties, strict=False, skip_validation=False, network=
else:
raise Exception("Cannot find cf stemcell to use")
print('- Using stemcell id', stemcell)
product_settings['stemcell_ids'] = stemcell
product_settings['stemcell_ids'][0] = stemcell
post_yaml('/api/installation_settings', 'installation[file]', settings)
#
# Use the first availability zone (skip this for Azure, which doesn't use them)
Expand Down

0 comments on commit 58d40b7

Please sign in to comment.