@@ -103,6 +103,7 @@ async function createAndExecuteDemoPipeline(runtimeName, progressReporter) {
103
103
const [ pipelineExecutionError ] = await to ( pipelinesRunCmd . handler ( {
104
104
name : INSTALLATION_DEFAULTS . DEMO_PIPELINE_NAME ,
105
105
exitProcess : false ,
106
+ annotation : [ ] ,
106
107
} ) ) ;
107
108
await handleError ( pipelineExecutionError , 'Failed to run demo pipeline' , progressReporter , installationProgress . events . PIPELINE_EXECUTED ) ;
108
109
@@ -195,6 +196,9 @@ const initCmd = new Command({
195
196
. option ( 'tolerations' , {
196
197
describe : 'The kubernetes tolerations as path to a JSON file to be used by venona resources (default is no tolerations) (string)' ,
197
198
} )
199
+ . option ( 'storage-class-name' , {
200
+ describe : 'Set a name of your custom storage class' ,
201
+ } )
198
202
. option ( 'venona-version' , {
199
203
describe : 'Version of venona to install (default is the latest)' ,
200
204
} )
@@ -217,6 +221,7 @@ const initCmd = new Command({
217
221
'venona-version' : venonaVersion ,
218
222
'kube-config-path' : kubeConfigPath ,
219
223
'skip-version-check' : skipVersionCheck ,
224
+ 'storage-class-name' : storageClassName ,
220
225
yes : noQuestions ,
221
226
verbose,
222
227
name, url,
@@ -347,6 +352,7 @@ const initCmd = new Command({
347
352
'install-runtime' : true ,
348
353
verbose,
349
354
'make-default-runtime' : shouldMakeDefaultRe ,
355
+ 'storage-class-name' : storageClassName ,
350
356
terminateProcess : false ,
351
357
} ;
352
358
const [ err , runtimeName ] = await to ( installAgent . handler ( agentInstallOptions ) ) ;
@@ -373,6 +379,7 @@ const initCmd = new Command({
373
379
374
380
console . log ( colors . green ( '\nRunner Status:' ) ) ;
375
381
await getAgents . handler ( { } ) ;
382
+ console . log ( colors . green ( `\nGo to ${ colors . blue ( 'https://g.codefresh.io/kubernetes/monitor/services' ) } to view your cluster in codefresh dashbaord` ) ) ;
376
383
console . log ( colors . green ( `\nDocumenation link: ${ colors . blue ( 'https://codefresh.io/docs/docs/enterprise/codefresh-runner/#codefresh-runner-preview-release' ) } ` ) ) ;
377
384
console . log ( colors . green ( `If you had any issues with the installation please report them at: ${ colors . blue ( 'https://github.com/codefresh-io/cli/issues/new' ) } ` ) ) ;
378
385
await to ( progressReporter . report ( installationProgress . events . FINISHED , installationProgress . status . SUCCESS ) ) ;
0 commit comments