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/pipeline/run.cmd.js
-7Lines changed: 0 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -86,12 +86,6 @@ const run = new Command({
86
86
default: [],
87
87
alias: 'v',
88
88
})
89
-
.option('encrypted',{
90
-
array: true,
91
-
alias: 'e',
92
-
describe: 'Variable names to encrypt',
93
-
default: [],
94
-
})
95
89
.option('detach',{
96
90
alias: 'd',
97
91
describe: 'Run pipeline and print build ID',
@@ -132,7 +126,6 @@ const run = new Command({
132
126
.example('codefresh run PIPELINE_ID | PIPELINE_NAME -b=master','Defining the source control context using a branch')
133
127
.example('codefresh run PIPELINE_ID | PIPELINE_NAME -s=52b992e783d2f84dd0123c70ac8623b4f0f938d1','Defining the source control context using a commit')
134
128
.example('codefresh run PIPELINE_ID | PIPELINE_NAME -b=master -v key1=value1 -v key2=value2','Setting variables through the command')
135
-
.example('codefresh run PIPELINE_ID | PIPELINE_NAME -b=master -v key1=value1 -v key2=value2 -e key1','Setting variables through the command with encrypted option')
136
129
.example('codefresh run PIPELINE_ID | PIPELINE_NAME -b=master --var-file ./var_file.yml','Settings variables through a yml file')
137
130
.example('codefresh run PIPELINE_ID | PIPELINE_NAME -b=master --context context','Inject contexts to the pipeline execution')
138
131
.example('codefresh run PIPELINE_ID | PIPELINE_NAME --skip step1 step2 step3','Skip specific steps');
0 commit comments