You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/interface/cli/commands/hybrid/init.cmd.js
+27-13Lines changed: 27 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -134,6 +134,12 @@ const initCmd = new Command({
134
134
.option('set-file',{
135
135
describe: 'Set values for templates from file, example: --set-file Storage.GoogleServiceAccount=/path/to/service-account.json',
136
136
})
137
+
.option('http-proxy',{
138
+
describe: 'http proxy to be used in the runner',
139
+
})
140
+
.option('https-proxy',{
141
+
describe: 'https proxy to be used in the runner',
142
+
})
137
143
.option('verbose',{
138
144
describe: 'Print logs',
139
145
})
@@ -184,6 +190,8 @@ const initCmd = new Command({
184
190
'set-default-runtime': shouldMakeDefaultRe,
185
191
'exec-demo-pipeline': shouldExecutePipeline,
186
192
'env-vars': envVars,
193
+
'http-proxy': httpProxy,
194
+
'https-proxy': httpsProxy,
187
195
}=_argv;
188
196
189
197
if(envVars){
@@ -197,7 +205,9 @@ const initCmd = new Command({
197
205
'\nAfter getting the token you may run this command again with the [--token] option or use the \'codefresh auth\' command to create an authenticated context.');
0 commit comments