fix data filtering

This commit is contained in:
Cedric Verstraeten
2024-11-30 17:40:24 +01:00
parent 95dfd6aa7b
commit 517c553e4b
4 changed files with 2 additions and 8 deletions

View File

@@ -91,8 +91,6 @@ jobs:
- name: Install Data filtering
id: install-data-filtering
run: |
sed -e '/resources/ s/^#*/#/' -i ./base/vault/data-filtering-deployment.yaml
sed -e '/limits/ s/^#*/#/' -i ./base/vault/data-filtering-deployment.yaml
sed -e '/nvidia/ s/^#*/#/' -i ./base/vault/data-filtering-deployment.yaml
kubectl apply -f ./base/vault/data-filtering-deployment.yaml
echo "Sleeping for 250 seconds, give time for the helm chart to create the pods" && sleep 250

View File

@@ -89,8 +89,6 @@ jobs:
- name: Install Data filtering
id: install-data-filtering
run: |
sed -e '/resources/ s/^#*/#/' -i ./base/vault/data-filtering-deployment.yaml
sed -e '/limits/ s/^#*/#/' -i ./base/vault/data-filtering-deployment.yaml
sed -e '/nvidia/ s/^#*/#/' -i ./base/vault/data-filtering-deployment.yaml
kubectl apply -f ./base/vault/data-filtering-deployment.yaml
echo "Sleeping for 250 seconds, give time for the helm chart to create the pods" && sleep 250

View File

@@ -87,8 +87,6 @@ jobs:
- name: Install Data filtering
id: install-data-filtering
run: |
sed -e '/resources/ s/^#*/#/' -i ./base/vault/data-filtering-deployment.yaml
sed -e '/limits/ s/^#*/#/' -i ./base/vault/data-filtering-deployment.yaml
sed -e '/nvidia/ s/^#*/#/' -i ./base/vault/data-filtering-deployment.yaml
kubectl apply -f ./base/vault/data-filtering-deployment.yaml
echo "Sleeping for 250 seconds, give time for the helm chart to create the pods" && sleep 250

View File

@@ -21,11 +21,11 @@ spec:
requests:
cpu: 100m
memory: 512Mi
nvidia.com/gpu: 1
nvidia.com/gpu: "1"
limits:
cpu: 100m
memory: 512Mi
nvidia.com/gpu: 1 # requesting a single GPU
nvidia.com/gpu: "1" # requesting a single GPU
env:
- name: MODEL_NAME
value: "yolov8n.pt"