File tree Expand file tree Collapse file tree 4 files changed +17
-6
lines changed
lib/interface/cli/commands Expand file tree Collapse file tree 4 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,9 @@ const installAgentCmd = new Command({
60
60
. option ( 'install-runtime' , {
61
61
describe : 'Install and attach runtime on the same namespace as the agent (default is false)' ,
62
62
} )
63
+ . option ( 'skip-cluster-test' , {
64
+ describe : 'Do not run cluster acceptance test' ,
65
+ } )
63
66
. option ( 'verbose' , {
64
67
describe : 'Print logs' ,
65
68
} ) ,
@@ -77,6 +80,7 @@ const installAgentCmd = new Command({
77
80
'kube-config-path' : kubeConfigPath ,
78
81
'skip-version-check' : skipVersionCheck ,
79
82
'install-runtime' : installRuntime ,
83
+ 'skip-cluster-test' : skipClusterTest ,
80
84
verbose,
81
85
} = argv ;
82
86
let agent ;
@@ -144,6 +148,7 @@ const installAgentCmd = new Command({
144
148
venonaVersion,
145
149
kubeConfigPath,
146
150
skipVersionCheck,
151
+ skipClusterTest,
147
152
verbose,
148
153
agentId : name ,
149
154
terminateProcess : ! installRuntime ,
@@ -160,6 +165,7 @@ const installAgentCmd = new Command({
160
165
'runtime-kube-config-path' : kubeConfigPath ,
161
166
'attach-runtime' : true ,
162
167
'restart-agent' : true ,
168
+ 'skip-cluster-test' : skipClusterTest ,
163
169
verbose,
164
170
} ) ;
165
171
}
Original file line number Diff line number Diff line change @@ -104,6 +104,9 @@ const installRuntimeCmd = new Command({
104
104
. option ( 'cluster-service-account' , {
105
105
describe : 'service account for cluster default is default' ,
106
106
} )
107
+ . option ( 'skip-cluster-test' , {
108
+ describe : 'Do not run cluster acceptance test' ,
109
+ } )
107
110
. option ( 'verbose' , {
108
111
describe : 'Print logs' ,
109
112
} ) ,
@@ -122,6 +125,7 @@ const installRuntimeCmd = new Command({
122
125
'build-annotations' : buildAnnotations ,
123
126
'attach-runtime' : attachRuntime ,
124
127
'cluster-service-account' : clusterServiceAccount ,
128
+ 'skip-cluster-test' : skipClusterTest ,
125
129
} = argv ;
126
130
127
131
let {
@@ -217,6 +221,7 @@ const installRuntimeCmd = new Command({
217
221
setFile,
218
222
terminateProcess : ! attachRuntime ,
219
223
events : runtimeEvents ,
224
+ skipClusterTest,
220
225
} ) ;
221
226
// attach RE to agent in codefresh
222
227
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codefresh" ,
3
- "version" : " 0.52.7 " ,
3
+ "version" : " 0.53.0 " ,
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.6.2 " ,
40
+ "codefresh-sdk" : " ^1.7.0 " ,
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.6.2 :
1191
- version "1.6.2 "
1192
- resolved "https://registry.yarnpkg.com/codefresh-sdk/-/codefresh-sdk-1.6.2 .tgz#f8f196c0a53e7207bb9c474cab8147e4d8b53560 "
1193
- integrity sha512-Slzy2OmzFGJnHbx7s9m1V/q/9Noo005Kw9c20y0A5A5Ne+5Islra1P5iplMbEP5oE47FutfhUn7QjNt3qAq5Bw ==
1190
+ codefresh-sdk@^1.7.0 :
1191
+ version "1.7.0 "
1192
+ resolved "https://registry.yarnpkg.com/codefresh-sdk/-/codefresh-sdk-1.7.0 .tgz#6a81b1d9756ebcc74544f597198c63f5d2e95f6c "
1193
+ integrity sha512-+c2duw3k86y295z7Bx212J8uvsCicsBFJNSijdZMuV/InzdmeYmRjIOvHq/1j6rg1Gl4ogx1z8vk27SKoBnTfQ ==
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