File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
lib/interface/cli/commands/pipeline/dynamic Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,16 @@ const install = new Command({
9
9
root : true ,
10
10
command : 'install-chart' ,
11
11
cliDocs : {
12
- description : 'Install or upgrade Helm chart' ,
13
- } ,
14
- webDocs : {
15
- category : 'Predefined Pipelines' ,
16
- title : 'Install or upgrade Helm chart' ,
12
+ description : `Install or upgrade Helm chart
13
+ Repository flag can be either absolute url or saved repository in Codefresh` ,
17
14
} ,
18
15
builder : ( yargs ) => {
19
16
return yargs
20
- . usage ( 'Install or upgrade helm chart on cluster' )
17
+ . usage ( 'Display one or many resources\n\n' +
18
+ 'Repository flag can be either absolute url or saved repository as context in Codefresh' )
19
+ . example ( '$0 install-chart --repo https://kubernetes-charts.storage.googleapis.com' , 'Install chart from public helm repo' )
20
+ . example ( '$0 get ctx --type helm-repository' , 'Get all helm repos' )
21
+ . example ( '$0 install-chart --repo my-help-repository' , 'Install chart saved repo' )
21
22
. option ( 'cluster' , {
22
23
description : 'Install on cluster' ,
23
24
type : 'string' ,
@@ -34,7 +35,7 @@ const install = new Command({
34
35
type : 'string' ,
35
36
} )
36
37
. option ( 'repository' , {
37
- description : 'Helm repository' ,
38
+ description : 'Helm repository (absolute url or name of context with type help-repository) ' ,
38
39
type : 'string' ,
39
40
required : true ,
40
41
} )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codefresh" ,
3
- "version" : " 0.7.2 " ,
3
+ "version" : " 0.7.3 " ,
4
4
"description" : " Codefresh command line utility" ,
5
5
"main" : " index.js" ,
6
6
"preferGlobal" : true ,
You can’t perform that action at this time.
0 commit comments