Skip to content

Commit dd7d808

Browse files
Saas 7238 - prevent runtime-env name collision (#470)
1 parent 1aa3d30 commit dd7d808

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

lib/interface/cli/commands/runtimeEnvironments/install.cmd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ const installRuntimeCmd = new Command({
177177
nodeSelector: kubeNodeSelectorObj,
178178
annotations: buildAnnotations,
179179
clusterName,
180-
runtimeName,
180+
runtimeEnvironmentName: runtimeName,
181181
agent: true,
182182
});
183183
console.log(`Runtime environment "${colors.cyan(runtimeName)}" has been created`);

openapi.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7706,6 +7706,9 @@
77067706
},
77077707
"clusterName": {
77087708
"type":"string"
7709+
},
7710+
"runtimeEnvironmentName": {
7711+
"type":"string"
77097712
}
77107713
},
77117714
"type": "object"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codefresh",
3-
"version": "0.63.9",
3+
"version": "0.63.11",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)