File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
lib/interface/cli/commands/hybrid Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -150,9 +150,13 @@ const initCmd = new Command({
150
150
} )
151
151
. option ( 'set-value' , {
152
152
describe : 'Set values for templates, example: --set-value LocalVolumesDir=/mnt/disks/ssd0/codefresh-volumes' ,
153
+ type : array ,
154
+ default : [ ] ,
153
155
} )
154
156
. option ( 'set-file' , {
155
157
describe : 'Set values for templates from file, example: --set-file Storage.GoogleServiceAccount=/path/to/service-account.json' ,
158
+ type : array ,
159
+ default : [ ] ,
156
160
} )
157
161
. option ( 'http-proxy' , {
158
162
describe : 'http proxy to be used in the runner' ,
@@ -626,6 +630,7 @@ const initCmd = new Command({
626
630
} ) ;
627
631
628
632
// install runtime on cluster
633
+ setValue . push ( '--RuntimeInCluster=true' ) ;
629
634
installationPlan . addStep ( {
630
635
name : 'install runtime' ,
631
636
func : async ( ) => {
You can’t perform that action at this time.
0 commit comments