Skip to content

Commit

Permalink
docs: add k8s RP example to the helm values.yaml. (#10027)
Browse files Browse the repository at this point in the history
  • Loading branch information
ioga authored Oct 15, 2024
1 parent 9efd96d commit 7d6a1a7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions helm/charts/determined/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,35 @@ telemetry:
## Configure the resource pools in the Determined cluster.
resourcePools:
- pool_name: default
## To set up multiple resource pools for Determined on your Kubernetes cluster
## with custom pod spec or node selectors:
# resourcePools:
# - pool_name: prod_pool
# kubernetes_namespace: default
# task_container_defaults:
# gpu_pod_spec:
# apiVersion: v1
# kind: Pod
# spec:
# tolerations:
# - key: "pool_taint"
# operator: "Equal"
# value: "prod"
# effect: "NoSchedule"
# affinity:
# # Define an example node selector label.
# nodeSelectorTerms:
# kubernetes.io/hostname: "foo"
# # Define an example node affinity.
# nodeAffinity:
# requiredDuringSchedulingIgnoredDuringExecution:
# nodeSelectorTerms:
# - matchExpressions:
# - key: topology.kubernetes.io/zone
# operator: In
# values:
# - antarctica-west1
# - antarctica-east1
# defaultAuxResourcePool: default
# defaultComputeResourcePool: default

Expand Down

0 comments on commit 7d6a1a7

Please sign in to comment.