Skip to content

Commit fa5769e

Browse files
Fix file name used in upgrade command
1 parent 60f2432 commit fa5769e

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)