diff options
Diffstat (limited to 'share/starlingx_base/resource')
-rw-r--r-- | share/starlingx_base/resource/k8s_infra_workload_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/starlingx_base/resource/k8s_infra_workload_helper.py b/share/starlingx_base/resource/k8s_infra_workload_helper.py index f34b433b..5efb94e6 100644 --- a/share/starlingx_base/resource/k8s_infra_workload_helper.py +++ b/share/starlingx_base/resource/k8s_infra_workload_helper.py @@ -107,7 +107,7 @@ class InfraWorkloadHelper: os.mkdir(basedir) logger.debug("k8s profile temp dir for %s,%s,%s is %s" % (rbname, rbversion, profilename, basedir)) with open(basedir+manifest_yaml_filename, "w") as f_manifest_yaml: - yaml.dump(f_manifest_yaml, f1, Dumper=yaml.RoundTripDumper) + yaml.dump(manifest_yaml_json, f_manifest_yaml, Dumper=yaml.RoundTripDumper) with open(basedir+override_values_yaml_filename, "w") as f_override_values_yaml: yaml.dump(override_values_yaml_json, f_override_values_yaml, Dumper=yaml.RoundTripDumper) |