본문으로 건너뛰기

LLMModelDeployment

Container deployment settings for an internally hosted LLM model.

imageImage (string)필수

Fully qualified container image reference for the model server.

command object

Optional container entrypoint override.

하나 이상(anyOf)
  • Array [
  • string
  • ]
  • options object

    Runtime options converted to command-line flags when the model starts.

    property name* object
    하나 이상(anyOf)
    string
    args object

    Additional command-line arguments appended after rendered runtime options.

    하나 이상(anyOf)
  • Array [
  • string
  • ]
  • portPort (integer)
    기본값: 8080
    cpu object

    Requested CPU amount, such as 500m.

    하나 이상(anyOf)
    string
    memory object

    Requested memory amount, such as 2Gi.

    하나 이상(anyOf)
    string
    gpu object

    GPU count request

    하나 이상(anyOf)
    integer
    replicasReplicas (integer)
    기본값: 1
    health_pathHealth Path (string)
    기본값: /healthz
    env object

    Non-secret environment variables passed to the model container.

    property name*string
    node_selector object
    property name*string
    LLMModelDeployment
    {
    "image": "string",
    "command": [
    "string"
    ],
    "options": {},
    "args": [
    "string"
    ],
    "port": 8080,
    "cpu": "string",
    "memory": "string",
    "gpu": 0,
    "replicas": 1,
    "health_path": "/healthz",
    "env": {},
    "node_selector": {}
    }