Skip to content

Commit fd6215f

Browse files
Merge pull request #81 from stfc/Fix_hardcoded_arch
Fix archetype being hardcoded to cloud
2 parents b8055b0 + 0bf930e commit fd6215f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

OpenStack-Rabbit-Consumer/rabbit_consumer/aq_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def aq_make(addresses: List[OpenstackAddress], image_meta: AqMetadata) -> None:
9292
"personality": image_meta.aq_personality,
9393
"osversion": image_meta.aq_os_version,
9494
"osname": image_meta.aq_os,
95-
"archetype": "cloud",
95+
"archetype": image_meta.aq_archetype,
9696
}
9797

9898
assert all(

OpenStack-Rabbit-Consumer/test/test_aq_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def test_aq_make_calls(config, setup, openstack_address_list, image_metadata):
143143
"personality": image_metadata.aq_personality,
144144
"osversion": image_metadata.aq_os_version,
145145
"osname": image_metadata.aq_os,
146-
"archetype": "cloud",
146+
"archetype": image_metadata.aq_archetype,
147147
}
148148

149149
expected_url = f"{domain}/host/{openstack_address_list[0].hostname}/command/make"

OpenStack-Rabbit-Consumer/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.1
1+
2.3.2

charts/rabbit-consumer/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ type: application
66
# This is the chart version. This version number should be incremented each time you make changes
77
# to the chart and its templates, including the app version.
88
# Versions are expected to follow Semantic Versioning (https://semver.org/)
9-
version: 1.4.1
9+
version: 1.4.2
1010

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

0 commit comments

Comments
 (0)