Remove vllm
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Tyler Perkins 2024-03-30 23:07:47 -04:00
parent a263684284
commit c7a613c9ca
Signed by: tyler
GPG Key ID: 03B27509E17EFDC8
2 changed files with 0 additions and 70 deletions

View File

@ -1,58 +0,0 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: vllm-server
namespace: vllm-ns
spec:
replicas: 1
selector:
matchLabels:
app: vllm-inference-server
template:
metadata:
labels:
app: vllm-inference-server
spec:
runtimeClassName: nvidia
containers:
- name: vllm-inference-server
image: vllm/vllm-openai:latest
imagePullPolicy: IfNotPresent
resources:
limits:
nvidia.com/gpu: 2
env:
- name: HUGGING_FACE_HUB_TOKEN
value: ""
- name: TRANSFORMERS_CACHE
value: /.cache
- name: shm-size
value: 1g
#command: ["/bin/bash", "-c"]
#args:
#- while true; do sleep 2600; done
command: ["python3", "-m", "vllm.entrypoints.openai.api_server"]
args: ["--model=openai-community/gpt2",
"--gpu-memory-utilization=0.95",
"--disable-log-requests",
"--trust-remote-code",
"--port=8000",
"--dtype=half",
"--tensor-parallel-size=2"]
ports:
- containerPort: 8000
name: http
securityContext:
runAsUser: 1000
volumeMounts:
- mountPath: /dev/shm
name: dshm
- mountPath: /.cache
name: cache
volumes:
- name: cache
emptyDir: {}
- name: dshm
emptyDir:
medium: Memory

View File

@ -1,12 +0,0 @@
apiVersion: v1
kind: Service
metadata:
name: vllm-inference-server
namespace: vllm-ns
spec:
selector:
app: vllm-inference-server
type: LoadBalancer
ports:
- port: 8000
targetPort: http