File tree Expand file tree Collapse file tree 3 files changed +17
-6
lines changed
lib/interface/cli/commands/runtimeEnvironments Expand file tree Collapse file tree 3 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,12 @@ const installRuntimeCmd = new Command({
56
56
. option ( 'kube-node-selector' , {
57
57
describe : 'The kubernetes node selector "key=value" to be used by venona build resources (default is no node selector) (string)' ,
58
58
} )
59
+ . option ( 'set-value' , {
60
+ describe : 'Set values for templates, example: --set-value LocalVolumesDir=/mnt/disks/ssd0/codefresh-volumes' ,
61
+ } )
62
+ . option ( 'set-file' , {
63
+ describe : 'Set values for templates from file, example: --set-file Storage.GoogleServiceAccount=/path/to/service-account.json' ,
64
+ } )
59
65
. option ( 'dry-run' , {
60
66
describe : 'Set to true to simulate installation' ,
61
67
} )
@@ -105,6 +111,8 @@ const installRuntimeCmd = new Command({
105
111
'kube-node-selector' : kubeNodeSelector ,
106
112
'kubernetes-runner-type' : kubernetesRunnerType ,
107
113
'runtime-kube-config-path' : kubeConfigPath ,
114
+ 'set-value' : setValue ,
115
+ 'set-file' : setFile ,
108
116
verbose,
109
117
'build-annotations' : buildAnnotations ,
110
118
'attach-runtime' : attachRuntime ,
@@ -173,6 +181,9 @@ const installRuntimeCmd = new Command({
173
181
kubernetesRunnerType,
174
182
kubeConfigPath,
175
183
verbose,
184
+ kubeNodeSelector,
185
+ setValue,
186
+ setFile,
176
187
terminateProcess : ! attachRuntime ,
177
188
events,
178
189
} ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codefresh" ,
3
- "version" : " 0.50.2 " ,
3
+ "version" : " 0.50.3 " ,
4
4
"description" : " Codefresh command line utility" ,
5
5
"main" : " index.js" ,
6
6
"preferGlobal" : true ,
37
37
"cf-errors" : " ^0.1.12" ,
38
38
"chalk" : " ^1.1.3" ,
39
39
"cli-progress" : " 3.6.0" ,
40
- "codefresh-sdk" : " 1.5.2 " ,
40
+ "codefresh-sdk" : " 1.5.3 " ,
41
41
"colors" : " ^1.1.2" ,
42
42
"columnify" : " ^1.5.4" ,
43
43
"compare-versions" : " ^3.4.0" ,
Original file line number Diff line number Diff line change @@ -1187,10 +1187,10 @@ code-point-at@^1.0.0:
1187
1187
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1188
1188
integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
1189
1189
1190
- codefresh-sdk@1.5.2 :
1191
- version "1.5.2 "
1192
- resolved "https://registry.yarnpkg.com/codefresh-sdk/-/codefresh-sdk-1.5.2 .tgz#0b0515ecb46a0ccc2ea4859670b6816d8e8c527f "
1193
- integrity sha512-WZY/ziw/ksrbpQKcrI6OIjC+pNeSbDSrvU/ky5qiRGvYfu4AHZNUn5pqki4Tn9YvAYVZ3ZL1wuGqbYhqtm8wBw ==
1190
+ codefresh-sdk@1.5.3 :
1191
+ version "1.5.3 "
1192
+ resolved "https://registry.yarnpkg.com/codefresh-sdk/-/codefresh-sdk-1.5.3 .tgz#77e3708d6cd4a9d0fe468b0749b8ac3754de99bb "
1193
+ integrity sha512-4gGPHmyEqWxMcvY78XrjMkfA7WlriYOs43ak9YkIfApz6wxAcDy7B7qLwvKi/ZHDM25nwA1W4xrPQqm0ju7Usg ==
1194
1194
dependencies :
1195
1195
bluebird "^3.5.3"
1196
1196
cf-errors "^0.1.12"
You can’t perform that action at this time.
0 commit comments