Skip to content

Commit

Permalink
tag
Browse files Browse the repository at this point in the history
  • Loading branch information
shyam-ks committed Nov 18, 2021
1 parent b54b998 commit 5cd0b63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/update-image-tag-helm.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
stream = open(fname, 'r')
yaml = ruamel.yaml.YAML() # defaults to round-trip if no parameters given
code = yaml.load(stream)
code[imageName]['image']['tag'] = tag
code['image']['tag'] = tag
yaml.dump(code, sys.stdout)
with open(fname, "w") as f:
yaml.dump(code, f)
Expand Down

0 comments on commit 5cd0b63

Please sign in to comment.