@catladder/cli 1.46.0 → 1.47.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -24,7 +24,7 @@
24
24
  "node": ">=12.0.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@catladder/pipeline": "1.46.0",
27
+ "@catladder/pipeline": "1.47.1",
28
28
  "@kubernetes/client-node": "^0.16.2",
29
29
  "@tsconfig/node14": "^1.0.1",
30
30
  "@types/common-tags": "^1.8.0",
@@ -58,5 +58,5 @@
58
58
  "update-notifier": "^5",
59
59
  "vorpal": "^1.12.0"
60
60
  },
61
- "version": "1.46.0"
61
+ "version": "1.47.1"
62
62
  }
@@ -43,8 +43,9 @@ export default async (vorpal: Vorpal) =>
43
43
  // ignore
44
44
  }
45
45
 
46
- const releaseName = (await getEnvironment(env, componentName)).envVars
47
- .RELEASE_NAME; // TODO: maybe its own function would be better
46
+ // we use the app full name as the release name
47
+ const releaseName = (await getEnvironment(env, componentName)).fullName;
48
+
48
49
  this.log(`helm release name: ${releaseName}`);
49
50
  this.log("");
50
51
  this.log("migrating now... 😼. This may take a moment");