Skip to content

Commit 92c7354

Browse files
Merge pull request #3 from silogen/fix/upgrade-helm-yaml
Fix file name used in upgrade command
2 parents 60f2432 + fa5769e commit 92c7354

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

codehub/cli/create.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ def upgrade(name, admins, https=None, client_id=None, client_secret=None):
8282
)
8383
cloud_state = terraform_output(cloud_dir=cloud_dir)
8484

85-
last_helm_install = read_yaml(os.path.join(old_deploy_dir, "helm", "install.yaml"))
85+
last_helm_install = read_yaml(os.path.join(old_deploy_dir, "helm", "chart.yaml"))[
86+
"install"
87+
]
8688

8789
__upgrade_helm_chart(
8890
name,

0 commit comments

Comments
 (0)