Note: Logged in state required
app command consists of various other sub-commands, which helps you to move around and manage applications within the scope of your 01cloud account.
NOTE: Inorder to perform activities in applications, you must have the necessary permission.
The commands under applications can be categorized to basic commands and context commands. Each of these category will be described on next page.
1. Basic Commands:
get:
get command enables you to fetch details about any application that you have access to. This command behaves in different ways, as according to the arguments supplied.
arguments:
If any id is supplied as the argument to the command then, that specific application will be fetched and printed on the console.
zocli application get <:id>
If no any id is supplied on the commmand then, all the application will be fetched, if any project value is set as default onn the conntext. Annd if there is no any default value, then this command will print the help menu.
zocli app get
flag:
help:
This flag is available for every commands and sub-commands and this prints the help menu for that specific command, and this flag can be used as,
$ zocli app get [--help | -h]
Note: If help flag is supplied then, any other flags or arguments will be ignored
id:
If you are not providing app id from the arguments then, you can start the –id flag, and provide the app id to fetch details about that specific one. And this exactly works as same as while provided from argument.
Example:
$ zocli app get [--id | -i] 1
pid:
If you are not providing project id from the arguments then, you can start the –pid flag, and provide the project id to fetch applications of that project. And this exactly works as same as while provided from argument.
Example:
$ zocli app get [--pid | -p] 1
projectName:
If you are not providing project name from the arguments then, you can start the –name flag, and provide the project name to fetch details about that specific project. And this exactly works as same as while provided from argument.
Example:
$ zocli app get [--pname | -n] test
output:
Output flag with format, will trigger the zocli to print the output in the desired format like, JSON and this flag can be used in combination with any other flags. This can be helpful if you want to automate works in 01cloud using any other 3rd party tools (like, jq). And as of right now, zocli supports 2 formats i.e. JSON and YAML. And you can utilize this output for using as manifest or resource file while performing actions using cli commannd apply.
You can use the output flag as,
$ zocli app get -o [json | yaml]
Example:
$ zocli app get 1 -o yaml
apiVersion: app.01cloud.io/v1
kind: application
metadata:
id: 1
createdat: 2000-01-01T01:11:11.049859Z
name: Cli Docs
spec:
cluster:
id: 1
name: france
region: france
service_type: 1
git_service: github
git_repo_url: git://github.com/yourrepo.git
plugin:
id: 51
name: springboot
project:
id: 1
name: Cli Docs
rename:
This command helps you to renname the application.
NOTE: You must have the necessary privileges for renaming.
arguments:
If any id is supplied as the argument to the command then, that specific application will be fetched and rename process will start.
zocli application rename <:id>
flags:
help:
This flag is available for every commands and sub-commands and this prints the help menu for that specific command, and this flag can be used as,
$ zocli app rename [--help | -h]
Note: If help flag is supplied then, any other flags or arguments will be ignored
id:
If you are not providing app id from the arguments then, you can start the –id flag, and provide the app id to fetch details about that specific one. And this exactly works as same as while provided from argument.
Example:
$ zocli app rename [--id | -i] 1
pid:
If you are not providing project id from the arguments then, you can start the –pid flag, and provide the project id to fetch applications of that project. And this exactly works as same as while provided from argument.
Example:
$ zocli app rename [--pid | -p] 1
projectName:
If you are not providing project name from the arguments then, you can start the –name flag, and provide the project name to fetch details about that specific project. And this exactly works as same as while provided from argument. Example:
$ zocli app rename [--pname | -N] test
delete:
This command helps you to delete applications residing on projects.
flags
help
This flag is available for every commands and sub-commands and this prints the help menu for that specific command, and this flag can be used as,
$ zocli app delete [--help | -h]
Note: If help flag is supplied then, any other flags or arguments will be ignored
id:
If you are not providing app id from the arguments then, you can start the –id flag, and provide the app id to fetch details about that specific one. And this exactly works as same as while provided from argument.
Example:
$ zocli app delete [--id | -i] 1
pid:
If you are not providing project id from the arguments then, you can start the –pid flag, and provide the project id to fetch applications of that project. And this exactly works as same as while provided from argument.
Example:
$ zocli app delete [--pid | -p] 1
projectName:
If you are not providing project name from the arguments then, you can start the –name flag, and provide the project name to fetch details about that specific project. And this exactly works as same as while provided from argument. Example:
$ zocli app delete [--pname | -N] test
NOTE: Creation of Application is covered in mainfest file section.
2. Context Commands:
Context commnands allows you to manage the application that can be used as default.
getdefault:
Get the default app wihch is currently in use from the configuration file. For this, only the active orgranization’s default application will be retrieved and printed.
The only flag available on this command is help.
use:
This command helps you to set a default application on the configuration file, so you can use that specific application without supplying application id.
arguments:
You can provide an application id as an argument to the command and the cli will try to verify the application id, by fetching all the list of applications residing on the default project or you can provide project id using flags. id on the argument can be supplied as,
$ zocli app use 1
flags:
help:
This flag is available for every commands and sub-commands and this prints the help menu for that specific command, and this flag can be used as,
$ zocli app use [--help | -h]
Note: If help flag is supplied then, any other flags or arguments will be ignored
id:
If you are not providing app id from the arguments then, you can start the –id flag, and provide the app id to fetch details about that specific one. And this exactly works as same as while provided from argument.
Example:
$ zocli app use [--id | -i] 1
pid:
If you are not providing project id from the arguments then, you can start the –pid flag, and provide the project id to fetch applications of that project. And this exactly works as same as while provided from argument.
Example:
$ zocli app use [--pid | -p] 1
projectName:
If you are not providing project name from the arguments then, you can start the –name flag, and provide the project name to fetch details about that specific project. And this exactly works as same as while provided from argument. Example:
$ zocli app use [--pname | -n] test
temp:
Temporarly this flag has been postponed for development.
removedefault:
Remove the default application which is currently in use from the configuration file. For this, only the active orgranization’s default project will be removed and none other profiles.
The only flag avaiale on this command is help.