values.yaml 3.31 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Default values for dynamo-gaie.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

# This is the Dynamo namespace where the dynamo model is deployed
dynamoNamespace: "vllm-agg"

# This is the port on which the model is exposed
model:
  # This is the model name that will be used to route traffic to the dynamo model
  # for example, if the model name is Qwen/Qwen3-0.6B, then the modelShortName should be qwen
  identifier: "Qwen/Qwen3-0.6B"
  # This is the short name of the model that will be used to generate the resource names
  shortName: "qwen"
  # Criticality level for the inference model
  criticality: "Critical"

# InferencePool configuration
inferencePool:
  # Target port number for the inference pool
  port: 8000

# HTTPRoute configuration
httpRoute:
  # Enable the HTTPRoute
  enabled: true
  # Gateway parent reference configuration
  gatewayName: "inference-gateway"
  # Path matching configuration
  path:
    prefix: "/"
  # Timeout configuration
  timeout:
    request: "300s"

extension:
52
  # default (non-epp-aware) EPP image for the GAIE extension
53
  image: us-central1-docker.pkg.dev/k8s-artifacts-prod/images/gateway-api-inference-extension/epp:v0.4.0
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68

# generic knobs you may want in both modes
imagePullSecrets: []     # e.g. ["docker-imagepullsecret"]
epp:
  imagePullPolicy: IfNotPresent
  # Add env in name/value pairs
  extraEnv: []           # e.g. [{name: USE_STREAMING, value: "true"}]
  # If you ever want to completely override args, supply a list here.
  # When empty, chart will render sane defaults
  argsOverride: []

# epp-aware mode toggle + specific settings
eppAware:
  enabled: false
  # Optional: override EPP image when epp-aware=true
69
  eppImage: docker.io/lambda108/epp-inference-extension-dynamo:v0.5.1-1
70
71
72
73
74
75

  # Sidecar (frontend-router)
  sidecar:
    # Container name for the sidecar
    name: frontend-router
    # Sidecar image
76
    image: nvcr.io/nvidia/ai-dynamo/vllm-runtime:my-tag
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
    # Image pull policy for the sidecar
    imagePullPolicy: IfNotPresent
    # Command and args for running the frontend in router mode.
    command: ["/bin/sh", "-c"]
    args: ["python3 -m dynamo.frontend --http-port 8000 --router-mode kv"]
    # Environment variables for the sidecar.
    env:
      - name: DYNAMO_NAMESPACE
        valueFromDynamoNamespace: true
      - name: ETCD_ENDPOINTS
        value: "http://dynamo-platform-etcd:2379"
      - name: NATS_SERVER
        value: "nats://dynamo-platform-nats:4222"
    # Resource requests/limits for the sidecar container.
    resources:
      requests:
        cpu: "1"
        memory: "2Gi"
    # Ports exposed by the sidecar container.
    ports:
      - containerPort: 8000