app.create¶
Create an app with app_name using catalog_app with train and version.
TODO: Add support for advanced mode which will enable users to use their own compose files
No Additional Items
Tuple Validation
Parameter 1: app_create
app_create
Type: objectAppCreateArgs parameters.
No Additional PropertiesCustom App
Type: boolean Default: falseWhether to create a custom application (true
) or install from catalog (false
).
Values
Type: objectConfiguration values for the application installation.
Custom Compose Config
Type: objectDocker Compose configuration as a structured object for custom applications.
Custom Compose Config String
Type: string Default: ""Docker Compose configuration as a YAML string for custom applications.
Catalog App
Default: nullName of the catalog application to install. Required when custom_app
is false
.
App Name
Type: stringApplication name must have the following:
- Lowercase alphanumeric characters can be specified.
- Name must start with an alphabetic character and can end with alphanumeric character.
- Hyphen '-' is allowed but not as the first or last character.
^[a-z]([-a-z0-9]*[a-z0-9])?$
Must be at least 1
characters long
Must be at most 40
characters long
"abc123"
"abc"
"abcd-1232"
Train
Type: string Default: "stable"The catalog train to install from.
Must be at least 1
characters long
"stable"
"enterprise"
Version
Type: string Default: "latest"The version of the application to install.
Must be at least 1
characters long
"latest"
"1.2.3"
AppEntry
Type: objectThe newly created application entry with all configuration details.
No Additional PropertiesName
Type: stringThe display name of the application.
Must be at least 1
characters long
Id
Type: stringUnique identifier for the application instance.
Must be at least 1
characters long
State
Type: enum (of string)Current operational state of the application.
Must be one of:
- "CRASHED"
- "DEPLOYING"
- "RUNNING"
- "STOPPED"
- "STOPPING"
Upgrade Available
Type: booleanWhether a newer version of the application is available for upgrade.
Latest Version
The latest available version string, or null
if no updates are available.
Must be at least 1
characters long
Image Updates Available
Type: booleanWhether newer Docker images are available for the containers in this application.
Custom App
Type: booleanWhether this is a custom application (true
) or from a catalog (false
).
Migrated
Type: booleanWhether this application has been migrated from kubernetes.
Human Version
Type: stringHuman-readable version string for display purposes.
Must be at least 1
characters long
Version
Type: stringTechnical version identifier of the currently installed application.
Must be at least 1
characters long
Metadata
Type: objectApplication metadata including description, category, and other catalog information.
AppActiveWorkloads
Type: objectInformation about the running containers, ports, and resources used by this application.
No Additional PropertiesContainers
Type: integerTotal number of containers currently running for this application.
Used Ports
Type: array of objectArray of all port mappings used by the application.
No Additional ItemsEach item of this array must be:
UsedPorts
Type: objectNo Additional Properties
Container Port
Type: integerThe port number inside the container.
Protocol
Type: stringThe network protocol used.
"tcp"
"udp"
Host Ports
Type: array of objectArray of host port mappings for this container port.
No Additional ItemsEach item of this array must be:
HostPorts
Type: objectNo Additional Properties
Host Port
Type: integerThe port number on the host system.
Host Ip
Type: stringThe IP address on the host system that the port is bound to.
Used Host Ips
Type: array of stringArray of host IP addresses in use by the application.
No Additional ItemsEach item of this array must be:
Container Details
Type: array of objectDetailed information about each container in the application.
No Additional ItemsEach item of this array must be:
AppContainerDetails
Type: objectNo Additional Properties
Id
Type: stringUnique identifier for the container.
Service Name
Type: stringName of the service this container provides.
Image
Type: stringDocker image name and tag used by this container.
Port Config
Type: array of objectArray of port mappings for this container.
No Additional ItemsEach item of this array must be:
UsedPorts
Type: objectNo Additional Properties
Container Port
Type: integerThe port number inside the container.
Protocol
Type: stringThe network protocol used.
"tcp"
"udp"
Host Ports
Type: arrayArray of host port mappings for this container port.
No Additional ItemsEach item of this array must be:
State
Type: enum (of string)Current state of the container.
Must be one of:
- "crashed"
- "created"
- "exited"
- "running"
- "starting"
Volume Mounts
Type: array of objectArray of volume mounts configured for this container.
No Additional ItemsEach item of this array must be:
AppVolumes
Type: objectNo Additional Properties
Source
Type: stringThe source path or volume name on the host system.
Destination
Type: stringThe mount path inside the container.
Mode
Type: stringThe mount mode (e.g., 'rw' for read-write, 'ro' for read-only).
Type
Type: stringThe volume type.
"bind"
"volume"
Volumes
Type: array of objectArray of all volume mounts used by the application.
No Additional ItemsEach item of this array must be:
AppVolumes
Type: objectNo Additional Properties
Source
Type: stringThe source path or volume name on the host system.
Destination
Type: stringThe mount path inside the container.
Mode
Type: stringThe mount mode (e.g., 'rw' for read-write, 'ro' for read-only).
Type
Type: stringThe volume type.
"bind"
"volume"
Images
Type: array of stringArray of Docker image names used by the application.
No Additional ItemsEach item of this array must be:
Must be at least 1
characters long
Networks
Type: array of objectArray of Docker networks associated with the application.
No Additional ItemsEach item of this array must be:
AppNetworks
Type: objectName
Type: stringThe name of the Docker network.
Id
Type: stringUnique identifier for the Docker network.
Labels
Type: objectKey-value pairs of labels associated with the network.
Additional Properties of any type are allowed.
Type: objectNotes
User-provided notes or comments about this application instance.
Portals
Type: objectWeb portals and access points provided by the application (URLs, ports, etc.).
Version Details
Default: nullDetailed version information including changelog and upgrade notes. null
if not available.
Config
Default: nullCurrent configuration values for the application. null
if configuration is not requested.
Required roles: APPS_WRITE