iectl publisher app-project upload project¶
Description
Import stand alone application to backend managed.
NOTICE
The App Project journey is deprecated in the new IEM UI. If you are working with IEM V2 (early access), these commands are not supported.
Usage
iectl publisher app-project upload project [OPTIONS]
Options
-a, --applicationname Name of the stand-alone application.
-v, --versionnumber Version Number which you want to import to Edge Management.
-w, --webaddress Web address for application. Mandatory if not provided while creating application. [Optional]
-g, --signuptype Signup type of an application["SignUpWithOrWithoutCode","SignUpWithCodeOnly","NoSignUp","SignUpWithoutCode","None"]. [Optional]
-c, --categoryid Unique id of category available on Edge Management under which you want to add this application. Mandatory for importing the version for the first time. [Optional]
-p, --projectid Unique id of projects available on Edge Management under which you want to add this application. Mandatory for importing the version for the first time. [Optional]
-l, --changelogs Release Notes, Use '\n' for new line and '\t' for tab space. [Optional]
-h, --help help for app-project upload project
Options inherited from parent commands
-o, --output string output format
-q, --query string query on result of object
-v, --verbose verbose output
Examples
iectl publisher app-project upload project -a "myapp" -v "0.0.1" -w "www.cli.com" -g "None" -l "change_logs" -p "8091818e834d4945a1fe4a8f2698d57e" -c "971686ca3fd2451ab05f9b4d993e3a33"
# Example [line breaks in changelogs]
iectl publisher app-project upload project -a "myapp" -v "0.0.1" -w "www.cli.com" -g "None" -l "change_logs\nnew feature added\nbug fixes\tchange1" -p "8091818e834d4945a1fe4a8f2698d57e" -c "971686ca3fd2451ab05f9b4d993e3a33"
# Example [read changelogs from file]
iectl publisher app-project upload project -a "myapp" -v "0.0.1" -w "www.cli.com" -g "None" -l "$(cat changelogs.md)" -p "8091818e834d4945a1fe4a8f2698d57e" -c "971686ca3fd2451ab05f9b4d993e3a33"