- Login [DONE]
meltcd login
# Get access token using --show-token flag
meltcd login --show-token
- Create a new
Application
[DONE]
meltcd app create <app-name> --repo <repo> --path <path-to-spec>
- Create a new
Application
with file [DONE]
meltcd app create --file <path-to-file>
- Update existing
Application
[DONE]
meltcd app update <app-name> --repo <repo> --path <path-to-spec>
# Or using file
meltcd app update --file <path-to-file>
- Get details about
Application
[DONE]
meltcd app get <app-name>
# or
meltcd app inspect <app-name>
- List all the running applications
meltcd app list
# or
meltcd app ls
- Force refresh (synchronize) the application [DONE]
meltcd app refresh <app-name>
# or
meltcd app sync <app-name>
- Recreate application [DONE]
meltcd app recreate <app-name>
- Remove an application [DONE]
meltcd app remove <app-name>
# or
meltcd app rm <app-name>
- Add a private repository auth credentials [DONE]
meltcd repo add <repo> --git --username <username> --password <password>
Options
--git
if repo is the git repository
--image
if repo is Container image
- List all added repositories [DONE]
meltcd repo ls
#or
meltcd repo list
- Remove a repository [DONE]
meltcd repo rm <repo>
# or
meltcd repo remove <repo>
- Update a repository [DONE]
meltcd repo update <repo> --git --username <username> --password <password>