CLI for Akinon Cloud Commerce
Project description
Akinon Cloud Commerce CLI
Akinon CLI is an application designed to manage projects and applications in Akinon Cloud Commerce through a command line interface.
Installation
After installing python 3.8+, run the following command. Then the Akinon CLI would be ready to be used.
$ pip install --user akinoncli
Usage
Every cloud commerce user is registered to an Account
. For a fresh user an Account
would be
created automatically. The authorized users who are registered to Account
can create users
for the same Account
using the CLI or UI. (Registration is not currently available on the CLI)
-h
command argument can be used in order to know more about the command.
(Command's required parameters, information about what it does, etc.)
Example:
akinoncli user -h
Commands
Authentication
In order to use Akinon CLI, the user must authenticate first.
akinoncli login
Authentication is achieved by submitting e-mail and password.
akinoncli logout
By logging out the previous credentials can be deleted.
Public Keys
In order to access the ProjectApp
's repositories, public keys are required.
akinoncli publickey create {key}
Creates public key.
Parameter | Description | Required |
---|---|---|
key | the text inside .ssh/id_rsa.pub | Yes |
Example
akinoncli publickey create "ssh-rsa AAAAB..."
akinoncli publickey list
Lists the public keys.
akinoncli publickey delete {ID}
Deletes the public key.
Parameter | Description | Required |
---|---|---|
ID | Public Key ID | Yes |
Applications
Users can create their own application and publish it so other users can set up for their project and use it.
The application which you'd like to publish needs to be managed by GIT version control system. In order to have read/write access to application's repository, the application needed to be created in the Akinon Cloud Commerce and a public key must be created.
For an application to be distributed and compiled by the Akinon Cloud Commerce, it needed to have
a file named akinon.json
in its home directory.
TODO: add the link to documentation of akinon.json
akinoncli applicationtype list
Lists the application types.
akinoncli application create {name} {slug} {application_type_id}
Creates an application.
Parameter | Description | Required |
---|---|---|
name | Application Name | Yes |
slug | Application Slug (must be unique) | Yes |
application_type_id | Application Type ID (akinoncli applicationtype list) | Yes |
To see the git address you should run the list
after creation of the application.
It can be seen as Clone URL
column.
akinoncli application list
Lists the applications.
akinoncli application get {app_id}
Prints the details of an application.
In order to upload the source code of application run the following commands:
$ git remote add akinon {CLONE_URL}
$ git push akinon {branch_name}
In order to deploy an application for a project, it needs to be built by Akinon Cloud
Commerce. A stable version is required for such an action. One can create a tag
using git tag
commands. After that, the tag needs to be pushed to the
remote repository in the Akinon Cloud Commerce system.
Example
$ git tag 1.0
$ git push akinon --tags
The building process can be started by CLI when the tag is pushed.
akinoncli application build {app_id} {tag} {--note}
Starts the building process for the given tag.
Parameter | Description | Required |
---|---|---|
app_id | Application ID | Yes |
tag | Tag | Yes |
--note | Note | No |
Example
$ akinoncli application build 1 1.0 --note="test note for the build"
akinoncli application versions {app_id}
Lists the built versions of the application.
Parameter | Description | Required |
---|---|---|
app_id | Application ID | Yes |
The status of version being completed
indicates that the version is ready for deployment.
akinoncli application version-logs <app_id> <version_id>
Lists application version logs.
Parameter | Description | Required |
---|---|---|
id | Application ID | Yes |
version_id | Version ID | Yes |
Example
$ akinoncli application version-logs 27 518
Projects
The projects are the ecosystem of applications working together and integrated. When a project is created
Omnitron
application is automatically being added to project and starts running.
akinoncli project list
Lists the projects.
akinoncli project create {name} {slug}
Creates project.
Parameter | Description | Required |
---|---|---|
name | Project Name | Yes |
slug | Project Slug (Must be unique.) | Yes |
Project Applications
The applications cannot be run without a project in the Akinon Cloud Commerce.
They should be related to a project and that relation can be assured with the
creation of a ProjectApp
.
akinoncli projectapp add {project_id} {app_id}
Adds the application to project by creating ProjectApp
.
Parameter | Description | Required |
---|---|---|
project_id | Project ID | Yes |
app_id | App ID | Yes |
akinoncli projectapp list {project_id}
Lists the applications of the relevant project.
Parameter | Description | Required |
---|---|---|
project_id | Project ID | Yes |
Environment Parameters
The applications are able to run with different configurations on the various projects.
The same application running with different default language on two different projects can be given as example.
For this kind of requirements, Environment Parameters can be used.
These parameters could be seen in the ENV Variables
column when listing the applications.
akinoncli projectapp add-env {project_id} {project_app_id} {ENV_KEY}={ENV_VALUE} {ANOTHER_ENV_KEY}={ANOTHER_ENV_VALUE}
Adds the environment parameter on the application.
Parameter | Description | Required |
---|---|---|
project_id | Project ID | Yes |
project_app_id | Application ID | Yes |
ENV_KEY | The key of relevant environment parameter | Yes |
ENV_VALUE | The value of relevant environment parameter | Yes |
--deploy | Redeploy the current version to activate environment variable changes. | No |
The same command can also be used for updating.
Example
$ akinoncli projectapp add-env 1 32 LANGUAGE_CODE=en-us
It's also possible to use complex (i.e. non-string) values by encoding them as JSON. The value must be quoted properly to function correctly.
$ akinoncli projectapp add-env 1 32 MIDDLEWARE='["my.custom.MiddlewareClass", "django.middleware.security.SecurityMiddleware", "whitenoise.middleware.WhiteNoiseMiddleware", "django.contrib.sessions.middleware.SessionMiddleware"]'
$ akinoncli projectapp add-env 1 32 THUMBNAIL_OPTIONS='{"product-list": {"width": 273, "height": 210}, "product-detail__slider_zoom": {"quality": 90}}'
For larger or dynamic payloads you can use EOF
operator in sh
-based terminals. This also allows string interpolation without having to escape
double quotes.
img_quality=90
opts=$(cat <<EOF
{
"product-list": {
"width": 273,
"height": 210,
"quality": $img_quality
},
"product-detail__slider_zoom": {
"quality": $img_quality
}
}
EOF
)
akinoncli projectapp add-env 1 32 THUMBNAIL_OPTIONS="$opts"
This environment variable can then be deserialized using django-environ
package, or json.loads
:
from environ import Env
env = Env()
DEFAULT_MIDDLEWARE = [
"django.middleware.security.SecurityMiddleware",
"whitenoise.middleware.WhiteNoiseMiddleware",
"django.middleware.common.CommonMiddleware",
]
MIDDLEWARE = env.json('MIDDLEWARE', default=DEFAULT_MIDDLEWARE) # omit `default` to throw an error if it's not set
THUMBNAIL_OPTIONS = env.json('THUMBNAIL_OPTIONS') # throws error if THUMBNAIL_OPTIONS is not set
# print(MIDDLEWARE[0]) # prints "my.custom.MiddlewareClass"
# print(list(THUMBNAIL_OPTIONS)) # prints ["product-list", "product-detail__slider_zoom"]
Refer to django-environ
documentation for further information.
akinoncli projectapp remove-env {project_id} {app_id} {ENV_KEY} {ANOTHER_ENV_KEY}
Deletes the environment parameter from the application.
Parameter | Description | Required |
---|---|---|
project_id | Project ID | Yes |
project_app_id | Application ID | Yes |
ENV_KEY | The key of relevant environment parameter | Yes |
--deploy | Redeploy the current version to activate environment variable changes. | No |
Deploying the Application
In order to deploy an application it needed to be built firstly. (Those steps are explained in Applications section.)
akinoncli projectapp deploy {project_id} {project_app_id} {tag}
Deploys the relevant tag to the relevant project application. (That process might take some time.)
Parameter | Description | Required |
---|---|---|
project_id | Project ID | Yes |
project_app_id | Application ID | Yes |
tag | Tag of the version | Yes |
akinoncli projectapp deploy-multiple {app_id} {tag}
Deploys multiple project applications with given tag
Parameter | Description | Required |
---|---|---|
app_id | Application ID | Yes |
tag | Tag of the version | Yes |
--project-apps | Project App IDs | If --deploy-all is not used Yes otherwise No |
--deploy-all | Deploys all project apps with given tag | If --project-apps is not used Yes otherwise No |
akinoncli projectapp deployments list {project_id} {app_id}
Lists the deployments of the relevant application.
The status of deployment can be seen in the status
column.
Parameter | Description | Required |
---|---|---|
project_id | Project ID | Yes |
project_app_id | Application ID | Yes |
akinoncli projectapp deployment-logs project_id project_app_id deployment_id
Lists deployment logs.
Parameter | Description | Required |
---|---|---|
project_id | Project ID | Yes |
project_app_id | Project App ID | Yes |
deployment_id | Deployment ID | Yes |
Example
$ akinoncli projectapp deployment-logs 1 1 1
Application Log
The applications logs can be seen following commands. process type parameter is optional.
akinoncli projectapp logs {project_id} {project_app_id}
Parameter | Description | Required |
---|---|---|
project_id | Project ID | Yes |
project_app_id | Application ID | Yes |
-p | Process type (If that parameter is passed the relevant process typed logs would be returned) (By default returns logs with any process types ) | No |
Example The following command returns a hundred logs created in the last minute.
akinoncli projectapp logs 1 1
The following command returns a hundred logs created in the last minute.
akinoncli projectapp logs 1 1 -p web
Exporting Application Logs
The application logs can be exported with following commands.
Parameter | Description | Required |
---|---|---|
project_id | Project ID | Yes |
app_id | Application ID | Yes |
-d | Filters logs that were created on the specified dates. Dates must be separated by commas. Date format must be YYYY-MM-DD. | No |
-s | Filters logs that were created after the given specified date. Date format must be YYYY-MM-DD. | No |
-e | Filters logs that were created before the given specified date. Date format must be YYYY-MM-DD. | No |
-p | Process type (If that parameter is passed the relevant process typed logs would be returned) (By default returns logs with any process types ) | No |
Example
The following command exports all the logs of the given application.
akinoncli projectapp export-logs 1 1
The following command exports all the logs of the given application which were created in 2021-09-23 and 2021-09-24 dates.*
akinoncli projectapp export-logs 1 1 -d 2021-09-23,2021-09-24
The following command exports all the logs of the given application which were created with web and beat process types.
akinoncli projectapp export-logs 1 1 -p web,beat
The following command exports all the logs of the given application which were created between 2021-09-23 and 2021-09-28 dates.
akinoncli projectapp export-logs 1 1 -s 2021-09-23 -e 2021-09-28
Attaching certificate to Project Application
In order to deploy an application with certain domain and ssl certificate, that command can be used. One certificate can only be attached to one Project Application.
Attaches certificate to Project Application.
akinoncli projectapp attach-certificate {project_id} {project_app_id} {certificate_id}
Parameter | Description | Required |
---|---|---|
project_id | Project ID | Yes |
project_app_id | Application ID | Yes |
certificate_id | Certificate ID | Yes |
Example
$ akinoncli projectapp attach-certificate 1 1 1
Domain and Certificate
Akinon Cloud Commerce sistemine bir uygulamayı dağıtıma çıkarırken uygulamanın ssl sertifikası ile belirli bir alan adı ile çalışmasını istediğimiz durumlarda alan adı ve sertifika oluşturarak oluşturulan sertifikayı proje uygulamasına bağlayabiliriz.
Domain
Lists the domains.
akinoncli domain list
Creates domain.
akinoncli domain create {hostname} {is_managed}
Parameter | Description | Required |
---|---|---|
hostname | Hostname | Yes |
is_managed | Alan adının akinon cloud tarafından yönetilmesini belirtir. (true, false değerlerinden biri olmalıdır) | Yes |
Example
$ akinoncli domain create akinoncloud.net true
Certificate
Lists the certificates of the relevant domain.
akinoncli certificate list {domain_id}
Creates a certificate.
akinoncli certificate create {domain_id} {fqdn}
Parameter | Description | Required |
---|---|---|
domain_id | Domain ID | Yes |
fqdn | Fully Qualified Domain Name | Yes |
Example
$ akinoncli certificate create 1 test.akinoncloud.net
Addons
Addons are the third-party technologies such as Redis, Sentry, PostgreSQL etc.
Lists the addons.
akinoncli addon list {project_id} {project_app_id}
Parameter | Description | Required |
---|---|---|
project_id | Project ID | Yes |
project_app_id | Project Application ID | Yes |
Example
$ akinoncli addon list 1 1
Kube Metric Monitor
CPU and memory metrics of the applications running in the relevant Kubernetes cluster and namespace can be seen with the following command.
Lists the metrics.
akinoncli addon list {project_id} {project_app_id}
Parameter | Description | Required |
---|---|---|
cluster | Cluster Name | Yes |
namespace | Namespace | Yes |
Example
$ akinoncli metrics list cluster1 namespace1
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file akinoncli-1.0.23.tar.gz
.
File metadata
- Download URL: akinoncli-1.0.23.tar.gz
- Upload date:
- Size: 22.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 836a3dfb2c0dee9be01198bf63dd3bf39df7521b36e403fee2aece240844132c |
|
MD5 | 3f6d9d3dad0332a7e8088842bc8128d2 |
|
BLAKE2b-256 | 3748ac96e334247a18f342bc23f11b2ed49cd52dd90e0c02489b5b9026c8df7f |
File details
Details for the file akinoncli-1.0.23-py3-none-any.whl
.
File metadata
- Download URL: akinoncli-1.0.23-py3-none-any.whl
- Upload date:
- Size: 23.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b084765ef8733668d225855bb755ae4a305e09a86067d5b4b2e300f2a2292bf |
|
MD5 | cbade9411fa003271f2139c410c2aab6 |
|
BLAKE2b-256 | a4b7bc85297f78373191cef5e3643f24590fd4883b9512dfa9baa50ebc399107 |