Add the missing options (#7758)

This commit is contained in:
Maurizio Vitale
2022-08-10 10:05:31 +01:00
committed by GitHub
parent 8eeebdf5e4
commit 7e7e026b81

View File

@@ -192,13 +192,16 @@ const main = async (args: ConfigArgs) => {
'adf-cli kubectl-clean-app --host "gateway_env" --modelerUsername "modelerusername" --modelerPassword "modelerpassword" --oauth "identity_env" --username "username" --password "password"') 'adf-cli kubectl-clean-app --host "gateway_env" --modelerUsername "modelerusername" --modelerPassword "modelerpassword" --oauth "identity_env" --username "username" --password "password"')
.option('-h, --host [type]', 'Host gateway') .option('-h, --host [type]', 'Host gateway')
.option('-o, --oauth [type]', 'Host sso server') .option('-o, --oauth [type]', 'Host sso server')
.option('--clusterEnv [type]', 'cluster Envirorment')
.option('--clusterUrl [type]', 'cluster URL')
.option('--clientId [type]', 'sso client') .option('--clientId [type]', 'sso client')
.option('--devopsUsername [type]', 'username of user with ACTIVITI_DEVOPS role') .option('--devopsUsername [type]', 'username of user with ACTIVITI_DEVOPS role')
.option('--devopsPassword [type]', 'password of user with ACTIVITI_DEVOPS role') .option('--devopsPassword [type]', 'password of user with ACTIVITI_DEVOPS role')
.option('--modelerUsername [type]', 'username of a user with role ACTIVIT_MODELER') .option('--modelerUsername [type]', 'username of a user with role ACTIVIT_MODELER')
.option('--modelerPassword [type]', 'modeler password') .option('--modelerPassword [type]', 'modeler password')
.option('--rancherUsername [type]', 'rancher username') .option('--rancherUsername [type]', 'rancher username')
.option('--rancherPassword [type]', 'rancher password') .option('--rancherToken [type]', 'rancher token')
.option('--apps [type]', 'Application prefix')
.option('--enableLike [boolean]', 'Enable the like for app name') .option('--enableLike [boolean]', 'Enable the like for app name')
.option('--intervalTime [string]', 'In case of enableLike it specify the time related to the createDate') .option('--intervalTime [string]', 'In case of enableLike it specify the time related to the createDate')
.parse(process.argv); .parse(process.argv);