We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a558b2b commit 989e3ddCopy full SHA for 989e3dd
bin/tilt-images-apply
@@ -68,11 +68,13 @@ helm_get_values_proc = exec_cmd(
68
os.environ["TILT_RELEASE_NAME"],
69
"--namespace",
70
os.environ["TILT_RELEASE_NAMESPACE"],
71
+ "--output",
72
+ "json",
73
],
74
stdout = subprocess.PIPE
75
)
-current_values = yaml.safe_load(helm_get_values_proc.stdout)
-current_values.pop("USER-SUPPLIED VALUES")
76
+current_values = json.loads(helm_get_values_proc.stdout) or {}
77
+current_values.pop("USER-SUPPLIED VALUES", None)
78
79
80
# Build and run the Helm upgrade command
0 commit comments