From aad68100aebd614ec47486ba8c281060a2a31ac5 Mon Sep 17 00:00:00 2001 From: ZehuaCao <47251317+Romanticoseu@users.noreply.github.com> Date: Sun, 8 Oct 2023 10:13:51 +0800 Subject: [PATCH] Add trusted-bigdl-llm-serving-tdx image. (#9093) * add entrypoint in cpu serving * kubernetes support for fastchat cpu serving * Update Readme * add image to manually_build action * update manually_build.yml * update README.md * update manually_build.yaml * update attestation_cli.py * update manually_build.yml * update Dockerfile * rename * update trusted-bigdl-llm-serving-tdx Dockerfile --- .github/workflows/manually_build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/manually_build.yml b/.github/workflows/manually_build.yml index 5b2cc7af..38f82f91 100644 --- a/.github/workflows/manually_build.yml +++ b/.github/workflows/manually_build.yml @@ -30,7 +30,7 @@ on: - bigdl-ppml-trusted-realtime-ml-scala-graphene - bigdl-ppml-trusted-realtime-ml-scala-occlum - bigdl-ppml-trusted-bigdl-llm-tdx - - bigdl-ppml-trusted-fastchat-tdx + - bigdl-ppml-trusted-bigdl-llm-serving-tdx - bigdl-ppml-kmsutil - bigdl-ppml-pccs - bigdl-ppml-trusted-python-toolkit-base @@ -839,21 +839,21 @@ jobs: docker push 10.239.45.10/arda/${image}:${TAG} docker rmi -f ${image}:${TAG} 10.239.45.10/arda/${image}:${TAG} - bigdl-ppml-trusted-fastchat-tdx: - if: ${{ github.event.inputs.artifact == 'bigdl-ppml-trusted-fastchat-tdx' || github.event.inputs.artifact == 'all' }} + bigdl-ppml-trusted-bigdl-llm-serving-tdx: + if: ${{ github.event.inputs.artifact == 'bigdl-ppml-trusted-bigdl-llm-serving-tdx' || github.event.inputs.artifact == 'all' }} runs-on: [self-hosted, Shire] steps: - uses: actions/checkout@v3 - name: docker login run: | docker login -u ${DOCKERHUB_USERNAME} -p ${DOCKERHUB_PASSWORD} - - name: bigdl-ppml-trusted-fastchat-tdx + - name: bigdl-ppml-trusted-bigdl-llm-serving-tdx run: | echo "##############################################################" - echo "############## bigdl-ppml-trusted-fastchat-tdx ###############" + echo "############## bigdl-ppml-trusted-bigdl-llm-serving-tdx ###############" echo "##############################################################" - export image=intelanalytics/bigdl-ppml-trusted-fastchat-tdx - cd ppml/tdx/docker/trusted-bigdl-llm-fschat/ + export image=intelanalytics/bigdl-ppml-trusted-bigdl-llm-serving-tdx + cd ppml/tdx/docker/trusted-bigdl-llm-serving-tdx/ sudo docker build \ --no-cache=true \ --build-arg http_proxy=${HTTP_PROXY} \