-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove build args for cpu docker image build
Signed-off-by: Maxime Fournioux <[email protected]>
- Loading branch information
1 parent
7f8147e
commit 5b48fee
Showing
1 changed file
with
1 addition
and
10 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 |
---|---|---|
|
@@ -50,7 +50,7 @@ jobs: | |
uses: helm/[email protected] | ||
|
||
- name: Build the Docker image vllm cpu | ||
run: docker buildx build --file Dockerfile.cpu --tag vllm-cpu-env --build-arg VLLM_CPU_DISABLE_AVX512="true" . | ||
run: docker buildx build --file Dockerfile.cpu --tag vllm-cpu-env . | ||
|
||
- name: Configuration of docker images, network and namespace for the kind cluster | ||
run: | | ||
|
@@ -70,15 +70,6 @@ jobs: | |
run: | | ||
kubectl -n ns-vllm port-forward service/test-vllm-service 8001:80 & | ||
sleep 10 | ||
(kubectl -n ns-vllm logs -f $(kubectl -n ns-vllm get pods -o name | awk '/deployment/ {print $1;exit}')) & | ||
curl -v --fail-with-body --show-error http://localhost:8001/v1/completions \ | ||
--header "Content-Type: application/json" \ | ||
--data '{ | ||
"model": "opt-125m", | ||
"prompt": "San Francisco is a", | ||
"max_tokens": 7, | ||
"temperature": 0 | ||
}' | ||
CODE="$(curl -v -f --location http://localhost:8001/v1/completions \ | ||
--header "Content-Type: application/json" \ | ||
--data '{ | ||
|