Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IOG serverless function + some fixes #2578

Merged
merged 33 commits into from
Feb 10, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
40275cf
Initial version of Inside Outside Guidance serverless function
Oct 12, 2020
f8bfb5f
Fix function.yaml for IOG
Oct 12, 2020
5e8ccd9
Add "processorMountMode: volume" to restart containers after reboot (…
Oct 13, 2020
5e4c8e0
Fix crash in IOG serverless function (it doesn't work right now as well)
Oct 13, 2020
3cbd3c0
Fix for points translation from crop to image.
Oct 13, 2020
afc7eef
Add crop_box parameter to IOG function
Oct 22, 2020
f538f30
Merge remote-tracking branch 'origin/develop' into nm/serverlss_tutorial
Oct 22, 2020
d23e76b
Update nuclio dashboard till 1.5.1 version
Oct 22, 2020
119d30f
Support neg_points in interactors
Oct 23, 2020
208528d
Add dummy serverless function for optimization
Oct 23, 2020
3f647d0
Remove dummy serverless function and update the list of available ser…
Oct 23, 2020
8f7a055
Improved deployment process of serverless functions
Oct 24, 2020
1b14f38
Improve installation.md for serverless functions.
Oct 24, 2020
ec08d4a
Minor changes in doc for serverless
Oct 24, 2020
bbd5dbc
Merge remote-tracking branch 'origin/develop' into nm/serverlss_tutorial
Oct 24, 2020
b8951c6
Merge remote-tracking branch 'origin/develop' into nm/serverlss_tutorial
Nov 10, 2020
d3b1df3
Merge remote-tracking branch 'origin/develop' into nm/serverlss_tutorial
Dec 15, 2020
b7b4d79
Revert the tutorial.
Dec 15, 2020
303eea5
Merge remote-tracking branch 'origin/develop' into nm/serverless_iog
Feb 3, 2021
5b33aca
Merged develop
Feb 5, 2021
9f25e8b
Merge branch 'nm/serverless_iog' of github.com:openvinotoolkit/cvat i…
Feb 9, 2021
63eb39d
Fix codacy issues
Feb 9, 2021
2defc22
Update CHANGELOG, use NUCLIO_DASHBOARD_DEFAULT_FUNCTION_MOUNT_MODE as
Feb 9, 2021
d64c0ef
Removed volume mode from functions (it is handled by
Feb 9, 2021
16fefe7
Disable warning from markdown linter about max line length for a table.
Feb 9, 2021
97e2984
Revert wrong changes
Feb 9, 2021
cd58eb2
Merge remote-tracking branch 'origin/develop' into nm/serverless_iog
Feb 9, 2021
7f7d6f9
Reverted changes in requirements for cvat (numpy).
Feb 9, 2021
049c643
Dashboard env variable doesn't work by a reason. Added back mountMode
Feb 10, 2021
34177f3
Fix IOG function with conda environment
Feb 10, 2021
ece913b
Fix tensorflow matterport/mask_rcnn
Feb 10, 2021
b65c03d
Merge remote-tracking branch 'origin/develop' into nm/serverless_iog
Feb 10, 2021
e76be34
Bump version of cvat-ui.
Feb 10, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add "processorMountMode: volume" to restart containers after reboot (…
…requires nuctl 1.5.0)
  • Loading branch information
Nikita Manovich committed Oct 13, 2020
commit 5e8ccd9eef7e308601e8da728fb5ab579d4f7a6f
2 changes: 1 addition & 1 deletion components/serverless/docker-compose.serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.3'
services:
serverless:
container_name: nuclio
image: quay.io/nuclio/dashboard:1.4.8-amd64
image: quay.io/nuclio/dashboard:1.5.0-amd64
restart: always
networks:
default:
Expand Down
1 change: 1 addition & 0 deletions serverless/openvino/dextr/nuclio/function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ spec:

platform:
attributes:
processorMountMode: volume
restartPolicy:
name: always
maximumRetryCount: 3
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ spec:

platform:
attributes:
processorMountMode: volume
restartPolicy:
name: always
maximumRetryCount: 3
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ spec:

platform:
attributes:
processorMountMode: volume
restartPolicy:
name: always
maximumRetryCount: 3
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ spec:

platform:
attributes:
processorMountMode: volume
restartPolicy:
name: always
maximumRetryCount: 3
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ spec:

platform:
attributes:
processorMountMode: volume
restartPolicy:
name: always
maximumRetryCount: 3
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ spec:

platform:
attributes:
processorMountMode: volume
restartPolicy:
name: always
maximumRetryCount: 3
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ spec:

platform:
attributes:
processorMountMode: volume
restartPolicy:
name: always
maximumRetryCount: 3
1 change: 1 addition & 0 deletions serverless/pytorch/foolwood/siammask/nuclio/function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ spec:

platform:
attributes:
processorMountMode: volume
restartPolicy:
name: always
maximumRetryCount: 3
1 change: 1 addition & 0 deletions serverless/pytorch/saic-vul/fbrs/nuclio/function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ spec:

platform:
attributes:
processorMountMode: volume
restartPolicy:
name: always
maximumRetryCount: 3
5 changes: 4 additions & 1 deletion serverless/pytorch/shiyinzhang/iog/nuclio/function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ spec:
- kind: RUN
value: curl -c ./cookie -s -L "https://drive.google.com/uc?export=download&id=${fileid}"
- kind: RUN
value: curl -Lb ./cookie "https://drive.google.com/uc?export=download&confirm=`awk '/download/ {print $NF}' ./cookie`&id=${fileid}" -o ${filename}
value: echo "/download/ {print \$NF}" > confirm_code.awk
- kind: RUN
value: curl -Lb ./cookie "https://drive.google.com/uc?export=download&confirm=`awk -f confirm_code.awk ./cookie`&id=${fileid}" -o ${filename}
- kind: WORKDIR
value: /opt/nuclio
- kind: ENTRYPOINT
Expand All @@ -62,6 +64,7 @@ spec:

platform:
attributes:
processorMountMode: volume
restartPolicy:
name: always
maximumRetryCount: 3
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ spec:

platform:
attributes:
processorMountMode: volume
restartPolicy:
name: always
maximumRetryCount: 3
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ spec:

platform:
attributes:
processorMountMode: volume
restartPolicy:
name: always
maximumRetryCount: 3