From 04bf7124b28ad54597af8dad81f103592fc19054 Mon Sep 17 00:00:00 2001 From: Stella Alice Schlotter Date: Fri, 22 Oct 2021 13:40:04 +0200 Subject: [PATCH 1/2] fix dextr deployment. See https://github.com/openvinotoolkit/cvat/issues/3819 --- CHANGELOG.md | 1 + serverless/openvino/dextr/nuclio/function.yaml | 2 +- .../content/en/docs/contributing/setup-additional-components.md | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 969f1844..d47540d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Incorrect work when copy job list with "Copy" button () - Iterating over manifest () - Manifest removing () +- Fixed dextr deployment (https://github.com/openvinotoolkit/cvat/issues/3819) ### Security diff --git a/serverless/openvino/dextr/nuclio/function.yaml b/serverless/openvino/dextr/nuclio/function.yaml index b996c0d8..0bb97721 100644 --- a/serverless/openvino/dextr/nuclio/function.yaml +++ b/serverless/openvino/dextr/nuclio/function.yaml @@ -38,7 +38,7 @@ spec: - kind: RUN value: unzip dextr_model_v1.zip - kind: RUN - value: pip3 install Pillow + value: pip3 install -U pip && pip3 install wheel Pillow triggers: myHttpTrigger: diff --git a/site/content/en/docs/contributing/setup-additional-components.md b/site/content/en/docs/contributing/setup-additional-components.md index fcb7b4a0..4f59d9b4 100644 --- a/site/content/en/docs/contributing/setup-additional-components.md +++ b/site/content/en/docs/contributing/setup-additional-components.md @@ -25,7 +25,7 @@ nuctl create project cvat ```bash nuctl deploy --project-name cvat \ --path serverless/openvino/dextr/nuclio \ - --volume `pwd`/serverless/openvino/common:/opt/nuclio/common \ + --volume `pwd`/serverless/common:/opt/nuclio/common \ --platform local ``` From 07c5053177df080a856e5ebe3a4f8cafd5a1ed21 Mon Sep 17 00:00:00 2001 From: Stella Alice Schlotter Date: Tue, 26 Oct 2021 12:50:55 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md Co-authored-by: Boris Sekachev --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d47540d0..0a3f6e14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,7 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Incorrect work when copy job list with "Copy" button () - Iterating over manifest () - Manifest removing () -- Fixed dextr deployment (https://github.com/openvinotoolkit/cvat/issues/3819) +- Fixed dextr deployment () ### Security