Skip to content

Commit

Permalink
Merge pull request #81 from stfc/Fix_hardcoded_arch
Browse files Browse the repository at this point in the history
Fix archetype being hardcoded to cloud
  • Loading branch information
anish-mudaraddi authored Jun 29, 2023
2 parents b8055b0 + 0bf930e commit fd6215f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion OpenStack-Rabbit-Consumer/rabbit_consumer/aq_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def aq_make(addresses: List[OpenstackAddress], image_meta: AqMetadata) -> None:
"personality": image_meta.aq_personality,
"osversion": image_meta.aq_os_version,
"osname": image_meta.aq_os,
"archetype": "cloud",
"archetype": image_meta.aq_archetype,
}

assert all(
Expand Down
2 changes: 1 addition & 1 deletion OpenStack-Rabbit-Consumer/test/test_aq_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def test_aq_make_calls(config, setup, openstack_address_list, image_metadata):
"personality": image_metadata.aq_personality,
"osversion": image_metadata.aq_os_version,
"osname": image_metadata.aq_os,
"archetype": "cloud",
"archetype": image_metadata.aq_archetype,
}

expected_url = f"{domain}/host/{openstack_address_list[0].hostname}/command/make"
Expand Down
2 changes: 1 addition & 1 deletion OpenStack-Rabbit-Consumer/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.1
2.3.2
4 changes: 2 additions & 2 deletions charts/rabbit-consumer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.4.1
version: 1.4.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v2.3.1"
appVersion: "v2.3.2"

0 comments on commit fd6215f

Please sign in to comment.