Skip to content

Commit 8ce1fea

Browse files
add prefix to app proxy (#557)
1 parent de0aa90 commit 8ce1fea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/interface/cli/commands/hybrid/init.cmd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ const initCmd = new Command({
602602
verbose,
603603
kubeConfigPath,
604604
});
605-
installationPlan.addContext('appProxyIP', appProxyIP);
605+
installationPlan.addContext('appProxyIP', `http://${appProxyIP}`);
606606
},
607607
installationEvent: installationProgress.events.APP_PROXY_INSTALLED,
608608
condition: !!appProxy,

lib/logic/entities/RuntimeEnvironments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class RuntimeEnvironments extends Entity {
2222
return new RuntimeEnvironments(_.pick(response, [
2323
'version', 'metadata', 'environmentCertPath', 'runtimeScheduler',
2424
'dockerDaemonScheduler', 'history', 'extends', 'description', 'isPublic',
25-
'isDefault', 'accountId', 'plan', 'accounts', 'nonComplete',
25+
'isDefault', 'accountId', 'plan', 'accounts', 'nonComplete', 'appProxy',
2626
]));
2727
}
2828
}

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.72.4",
3+
"version": "0.72.5",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)