-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvalues.yaml
129 lines (128 loc) · 5.06 KB
/
values.yaml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Copyright 2024 Google LLC
#
# 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.
#
health_runner:
base_name: "chs-hr"
# guid: "xckd" # Can specify a GUID if desired. Otherwise, a random GUID will be generated.
# check_time: "1590303600" # Will automatically be set if not given
# Multiple health checks can be added below
# Note that only NCCL health check (A3+) is enabled by default
health_checks:
nccl_healthcheck:
run_check: true
image:
repo: "us-docker.pkg.dev/gce-ai-infra/health-check/health-runner"
tag: "4.2-latest"
pull_policy: "Always"
env:
HC_IMAGE_TAG: "4.2-latest"
MACHINE_TYPE: "a3-megagpu-8g"
DRY_RUN: "true"
SLEEP_TIME_MINUTES: "30"
FILTER_LABEL_NAME: "aiinfra/nccl-healthcheck-test"
FILTER_LABEL_VALUE: "true"
HELM_CHART: "/app/health_checks/nccl_healthcheck" # Path to Helm chart in container
HELM_INSTALL_FLAGS: "-f /app/health_checks/nccl_healthcheck/a3plus.yaml --set health_check.image.tag=${MACHINE_TYPE}_${HC_IMAGE_TAG}" # Specific to A3+
ACCELERATOR_TYPE: "nvidia-h100-mega-80gb"
HEALTH_APP: "nccl"
PAIRING_MODE: "random"
SECOND_PASS_ENABLED: "true"
# Blast Mode
blast_mode:
blast_mode_enabled: true
env:
# BLAST_MODE_NUM_TESTS_LIMIT: "200" # Number of health checks to run in parallel
NODES_CHECKED_PER_TEST: "2"
gpu_healthcheck:
run_check: false
image:
repo: "us-docker.pkg.dev/gce-ai-infra/health-check/health-runner"
tag: "4.2-latest"
pull_policy: "Always"
env:
HC_IMAGE_TAG: "4.2-latest"
MACHINE_TYPE: "a3-megagpu-8g"
DRY_RUN: "true"
SLEEP_TIME_MINUTES: "30"
HELM_CHART: "/app/health_checks/gpu_healthcheck" # Path to Helm chart in container
HELM_INSTALL_FLAGS: "--set health_check.image.tag=${MACHINE_TYPE}_${HC_IMAGE_TAG}"
ACCELERATOR_TYPE: "nvidia-h100-mega-80gb"
HC_ENV_R_LEVEL: 3
# Blast Mode
blast_mode:
blast_mode_enabled: true # Defaults to run multiple health checks in parallel
env:
# BLAST_MODE_NUM_TESTS_LIMIT: "200" # Number of health checks to run in parallel
NODES_CHECKED_PER_TEST: "1"
neper_healthcheck:
run_check: false
image:
repo: "us-docker.pkg.dev/gce-ai-infra/health-check/health-runner"
tag: "4.2-latest"
pull_policy: "Always"
env:
HC_IMAGE_TAG: "4.2-latest"
MACHINE_TYPE: "a3-megagpu-8g"
DRY_RUN: "true"
SLEEP_TIME_MINUTES: "30"
HELM_CHART: "/app/health_checks/neper_healthcheck" # Path to Helm chart in container
HELM_INSTALL_FLAGS: "--set health_check.image.tag=${MACHINE_TYPE}_${HC_IMAGE_TAG}"
ACCELERATOR_TYPE: "nvidia-h100-mega-80gb"
blast_mode:
blast_mode_enabled: true # Defaults to run multiple health checks in parallel
env:
# BLAST_MODE_NUM_TESTS_LIMIT: "200" # Number of health checks to run in parallel
NODES_CHECKED_PER_TEST: "2"
straggler_healthcheck:
run_check: false
image:
repo: "us-docker.pkg.dev/gce-ai-infra/health-check/health-runner"
tag: "4.2-latest"
pull_policy: "Always"
env:
HC_IMAGE_TAG: "4.2-latest"
MACHINE_TYPE: "a3-megagpu-8g"
DRY_RUN: "true"
SLEEP_TIME_MINUTES: "30"
HELM_CHART: "/app/health_checks/straggler_healthcheck" # Path to Helm chart in container
HELM_INSTALL_FLAGS: "--set health_check.image.tag=${MACHINE_TYPE}_${HC_IMAGE_TAG}"
ACCELERATOR_TYPE: "nvidia-h100-mega-80gb"
HOSTS_CSV: nil # Allow health runner to identify the nodes
N_NODES: nil # Default to run on all nodes in the cluster
GCS_BUCKET_NAME: "straggler-healthcheck-logs"
blast_mode:
blast_mode_enabled: false # Defaults to run multiple health checks in parallel
nccl_cluster_healthcheck:
run_check: false
image:
repo: "us-docker.pkg.dev/gce-ai-infra/health-check/health-runner"
tag: "4.2-latest"
pull_policy: "Always"
env:
HC_IMAGE_TAG: "4.2-latest"
MACHINE_TYPE: "a3-megagpu-8g"
DRY_RUN: "true"
SLEEP_TIME_MINUTES: "30"
FILTER_LABEL_NAME: "aiinfra/nccl-healthcheck-test"
FILTER_LABEL_VALUE: "true"
HELM_CHART: "/app/health_checks/nccl_healthcheck" # Path to Helm chart in container
HELM_INSTALL_FLAGS: "-f /app/health_checks/nccl_healthcheck/a3plus.yaml --set health_check.image.tag=${MACHINE_TYPE}_${HC_IMAGE_TAG}" # Specific to A3+
ACCELERATOR_TYPE: "nvidia-h100-mega-80gb"
SECOND_PASS_ENABLED: "true"
HC_ENV_NHOSTS: "4"
# Blast Mode
blast_mode:
blast_mode_enabled: true
env:
NODES_CHECKED_PER_TEST: "4"