Skip to content

Commit 1c2c17b

Browse files
committed
Prevent key sort on yaml_merge in fence
1 parent 967699e commit 1c2c17b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

helm/fence/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.71
18+
version: 0.1.73
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

helm/fence/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# fence
22

3-
![Version: 0.1.71](https://img.shields.io/badge/Version-0.1.71-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: master](https://img.shields.io/badge/AppVersion-master-informational?style=flat-square)
3+
![Version: 0.1.73](https://img.shields.io/badge/Version-0.1.73-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: master](https://img.shields.io/badge/AppVersion-master-informational?style=flat-square)
44

55
A Helm chart for gen3 Fence
66

helm/fence/scripts/yaml_merge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def merge_dicts(dict1, dict2):
3535

3636
def save_merged_file(merged_data, output_file_path):
3737
with open(output_file_path, 'w') as output_file:
38-
yaml.dump(merged_data, output_file, default_flow_style=False)
38+
yaml.dump(merged_data, output_file, default_flow_style=False, sort_keys=False)
3939

4040
if __name__ == "__main__":
4141
# Check if at least two arguments are provided (including the script name)

helm/gen3/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dependencies:
6464
repository: "file://../frontend-framework"
6565
condition: frontend-framework.enabled
6666
- name: fence
67-
version: 0.1.71
67+
version: 0.1.73
6868
repository: "file://../fence"
6969
condition: fence.enabled
7070
- name: funnel
@@ -193,7 +193,7 @@ type: application
193193
# to the chart and its templates, including the app version.
194194
# Versions are expected to follow Semantic Versioning (https://semver.org/)
195195

196-
version: 0.3.18
196+
version: 0.3.21
197197

198198
# This is the version number of the application being deployed. This version number should be
199199
# incremented each time you make changes to the application. Versions are not expected to

helm/gen3/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# gen3
22

3-
![Version: 0.3.18](https://img.shields.io/badge/Version-0.3.18-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: master](https://img.shields.io/badge/AppVersion-master-informational?style=flat-square)
3+
![Version: 0.3.21](https://img.shields.io/badge/Version-0.3.21-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: master](https://img.shields.io/badge/AppVersion-master-informational?style=flat-square)
44

55
Helm chart to deploy Gen3 Data Commons
66

@@ -33,7 +33,7 @@ Helm chart to deploy Gen3 Data Commons
3333
| file://../dicom-server | dicom-server | 0.1.27 |
3434
| file://../embedding-management-service | embedding-management-service | 0.1.4 |
3535
| file://../etl | etl | 0.1.22 |
36-
| file://../fence | fence | 0.1.71 |
36+
| file://../fence | fence | 0.1.73 |
3737
| file://../frontend-framework | frontend-framework | 0.1.22 |
3838
| file://../funnel | funnel | 0.1.13 |
3939
| file://../gen3-analysis | gen3-analysis | 0.1.9 |

0 commit comments

Comments
 (0)