forked from GoogleCloudPlatform/kubernetes-engine-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added yaml files for running vllm on tpu (GoogleCloudPlatform#1511)
- Loading branch information
1 parent
b8b6ff2
commit 40eda65
Showing
3 changed files
with
169 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# 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. | ||
|
||
# [START gke_ai_ml_vllm_tpu_vllm_hpa] | ||
|
||
apiVersion: autoscaling/v2 | ||
kind: HorizontalPodAutoscaler | ||
metadata: | ||
name: vllm-hpa | ||
spec: | ||
scaleTargetRef: | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
name: vllm-tpu | ||
minReplicas: 1 | ||
maxReplicas: 2 | ||
metrics: | ||
- type: Pods | ||
pods: | ||
metric: | ||
name: prometheus.googleapis.com|vllm:num_requests_waiting|gauge | ||
target: | ||
type: AverageValue | ||
averageValue: 1 | ||
|
||
# [END gke_ai_ml_vllm_tpu_vllm_hpa] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
# 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. | ||
|
||
# [START gke_ai_ml_vllm_tpu_vllm_llama3_70b] | ||
|
||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: vllm-tpu | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: vllm-tpu | ||
template: | ||
metadata: | ||
labels: | ||
app: vllm-tpu | ||
annotations: | ||
gke-gcsfuse/volumes: "true" | ||
gke-gcsfuse/cpu-limit: "0" | ||
gke-gcsfuse/memory-limit: "0" | ||
gke-gcsfuse/ephemeral-storage-limit: "0" | ||
spec: | ||
serviceAccountName: KSA_NAME | ||
nodeSelector: | ||
cloud.google.com/gke-tpu-topology: 2x4 | ||
cloud.google.com/gke-tpu-accelerator: tpu-v6e-slice | ||
containers: | ||
- name: vllm-tpu | ||
image: REGION_NAME-docker.pkg.dev/PROJECT_ID/vllm-tpu/vllm-tpu:latest | ||
command: ["python3", "-m", "vllm.entrypoints.openai.api_server"] | ||
args: | ||
- --host=0.0.0.0 | ||
- --port=8000 | ||
- --tensor-parallel-size=8 | ||
- --max-model-len=8192 | ||
- --model=meta-llama/Meta-Llama-3.1-70B | ||
- --download-dir=/data | ||
env: | ||
- name: HUGGING_FACE_HUB_TOKEN | ||
valueFrom: | ||
secretKeyRef: | ||
name: hf-secret | ||
key: hf_api_token | ||
- name: VLLM_XLA_CACHE_PATH | ||
value: "/data" | ||
ports: | ||
- containerPort: 8000 | ||
resources: | ||
limits: | ||
google.com/tpu: 8 | ||
readinessProbe: | ||
tcpSocket: | ||
port: 8000 | ||
initialDelaySeconds: 15 | ||
periodSeconds: 10 | ||
volumeMounts: | ||
- name: gcs-fuse-csi-ephemeral | ||
mountPath: /data | ||
- name: dshm | ||
mountPath: /dev/shm | ||
volumes: | ||
- name: gke-gcsfuse-cache | ||
emptyDir: | ||
medium: Memory | ||
- name: dshm | ||
emptyDir: | ||
medium: Memory | ||
- name: gcs-fuse-csi-ephemeral | ||
csi: | ||
driver: gcsfuse.csi.storage.gke.io | ||
volumeAttributes: | ||
bucketName: GSBUCKET | ||
mountOptions: "implicit-dirs,file-cache:enable-parallel-downloads:true,file-cache:parallel-downloads-per-file:100,file-cache:max-parallel-downloads:-1,file-cache:download-chunk-size-mb:10,file-cache:max-size-mb:-1" | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: vllm-service | ||
spec: | ||
selector: | ||
app: vllm-tpu | ||
type: LoadBalancer | ||
ports: | ||
- name: http | ||
protocol: TCP | ||
port: 8000 | ||
targetPort: 8000 | ||
|
||
# [END gke_ai_ml_vllm_tpu_vllm_llama3_70b] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# 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. | ||
|
||
# [START gke_ai_ml_vllm_tpu_vllm_pod_monitor] | ||
|
||
apiVersion: monitoring.googleapis.com/v1 | ||
kind: PodMonitoring | ||
metadata: | ||
name: vllm-pod-monitoring | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: vllm-tpu | ||
endpoints: | ||
- path: /metrics | ||
port: 8000 | ||
interval: 15s | ||
|
||
# [END gke_ai_ml_vllm_tpu_vllm_pod_monitor] |