ai-services application create

The application command allows you to deploy new applications and monitor their status. On successful execution of create command, the next steps are displayed in the terminal itself.

Usage
ai-services application create [name] [flags]

Flags

Table 1. Command flags
Flag Description
-h, --help Show help message
--image-pull-policy string Image pull policy for container images.

Supported values: Always, Never, IfNotPresent

Default: IfNotPresent


            Determines when the container runtime pulls the image:
            - Always: pull every time before running
            - Never: use only local images
            - IfNotPresent: pull only if not available locally
          

In air-gapped environments, use: Never

Supported for podman runtime only

--legacy Use legacy application create implementation
--params strings Inline parameters to configure the application.

Format: comma-separated key=value pairs

Example: --params key1=value1,key2=value2

Use ai-services application templates to view supported parameters

When both --values and --params are provided, --params takes precedence

--skip-model-download Skip model download during application creation.

Use if models already exist at /var/lib/ai-services/models/

Recommended for air-gapped environments


            Warning:
            - If true and models are missing, the command fails
            - If false in air-gapped environments, download will fail
          

Supported for podman runtime only

--skip-validation strings Skip specific validation checks.

Podman: numa,rhel,power,rhn,spyre,usergroup,ulimits,slicelimits

OpenShift: kubeconfig,node-labels,operators,scp,dsci,dsc,default-sc

-t, --template string Application template to use (required)
--timeout duration Timeout for the operation (for example: 10s, 2m, 1h)

Supported for openshift runtime only

-f, --values stringArray Specify values files to override default template values.

Can be provided multiple times

Files are applied in order; later files override earlier ones