Skip to content

Commit c6490e1

Browse files
committed
Fix image tags on values regression
1 parent 410b28d commit c6490e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/deployment-cli-tools/harness-deployment

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ if __name__ == "__main__":
140140
# Overwrite the values.yaml saved in the previous step with updated image tags
141141
templates_path = COMPOSE if args.docker_compose else HELM_PATH
142142
values_path = os.path.join(args.output_path, templates_path, VALUES_MANUAL_PATH)
143-
merge_to_yaml_file(helm_values, values_path)
143+
merge_to_yaml_file(helm_values.to_dict() if hasattr(helm_values, 'to_dict') else helm_values, values_path)
144144

145145
if not args.no_cd_gen and envs and not args.docker_compose:
146146
create_codefresh_deployment_scripts(

0 commit comments

Comments
 (0)