forked from opendatahub-io/odh-gitops
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalues-inference-only.yaml
More file actions
46 lines (43 loc) · 1.65 KB
/
Copy pathvalues-inference-only.yaml
File metadata and controls
46 lines (43 loc) · 1.65 KB
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
# =============================================================================
# Inference Only Stack - Values Override
#
# This values file configures the chart to install only the inference/model-serving
# subset of RHOAI/ODH: KServe with distributed inference (llm-d).
#
# Since all components default to Removed, this override only needs to enable
# KServe and configure its dependencies.
#
# Dependencies installed:
# - cert-manager (TLS/certificate management)
# - Leader Worker Set (distributed inference workflows)
# - RHCL / Kuadrant (API management / Authorino)
#
# Usage with profile:
# helm upgrade --install rhaii ./charts/rhai-on-openshift-chart \
# --set profile=rhaii -n rhai-gitops --create-namespace
#
# Usage with values file:
# helm upgrade --install rhaii ./charts/rhai-on-openshift-chart \
# -f docs/examples/values-inference-only.yaml \
# -n rhai-gitops --create-namespace
# =============================================================================
# -- Set skipCrdCheck to true for ArgoCD (see docs/inference-only-stack.md)
# skipCrdCheck: true
# -- Operator configuration
operator:
enabled: true
type: rhoai
# =============================================================================
# COMPONENTS
# Only KServe is enabled; all other components are already Removed by default.
# =============================================================================
components:
kserve:
dependencies:
certManager: true
leaderWorkerSet: true
rhcl: true
customMetricsAutoscaler: false # Disabled for now
jobSet: false # Not needed for inference-only
dsc:
managementState: Managed