Skip to content

Commit fc17e30

Browse files
committed
πŸ’š Added several CI fixes
Signed-off-by: Krishna Murti <krishna.murti@intel.com>
1 parent 6e832ea commit fc17e30

13 files changed

Lines changed: 135 additions & 17 deletions

β€Ž.github/workflows/_helm-e2e.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
echo "CHART_NAME=$CHART_NAME" >> $GITHUB_ENV
6666
echo "RELEASE_NAME=${CHART_NAME}$(date +%Y%m%d%H%M%S)" >> $GITHUB_ENV
6767
echo "NAMESPACE=${CHART_NAME}-$(date +%Y%m%d%H%M%S)" >> $GITHUB_ENV
68-
echo "ROLLOUT_TIMEOUT_SECONDS=600s" >> $GITHUB_ENV
68+
echo "ROLLOUT_TIMEOUT_SECONDS=1200s" >> $GITHUB_ENV
6969
echo "TEST_TIMEOUT_SECONDS=600s" >> $GITHUB_ENV
7070
echo "KUBECTL_TIMEOUT_SECONDS=60s" >> $GITHUB_ENV
7171
echo "should_cleanup=false" >> $GITHUB_ENV

β€Žhelm-charts/common/data-prep/README.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export https_proxy="your_http_proxy"
5959
export http_proxy="your_https_proxy"
6060

6161
helm dependency update
62-
helm install data-prep . -f ./vdms-values.yaml --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} --set indexName=${INDEX_NAME} --set global.cacheUseHostPath=${CACHEDIR} --set vdmsHost=${VDMS_HOST} --set vdmsPort=${VDMS_PORT} --set global.https_proxy=${https_proxy} --set global.http_proxy=${http_proxy}
62+
helm install data-prep . -f ../variant_videoqna-values.yaml --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} --set indexName=${INDEX_NAME} --set global.cacheUseHostPath=${CACHEDIR} --set vdmsHost=${VDMS_HOST} --set vdmsPort=${VDMS_PORT} --set global.https_proxy=${https_proxy} --set global.http_proxy=${http_proxy}
6363
```
6464

6565
### (Option2): Installing the chart with dependencies automatically
@@ -76,7 +76,7 @@ export https_proxy="your_http_proxy"
7676
export http_proxy="your_https_proxy"
7777

7878
helm dependency update
79-
helm install data-prep . -f ./vdms-values.yaml --set vdms-vector-db.enabled=true --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} --set indexName=${INDEX_NAME} --set global.cacheUseHostPath=${CACHEDIR} --set global.https_proxy=${https_proxy} --set global.http_proxy=${http_proxy}
79+
helm install data-prep . -f ./variant_videoqna-values.yaml --set vdms-vector-db.enabled=true --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} --set indexName=${INDEX_NAME} --set global.cacheUseHostPath=${CACHEDIR} --set global.https_proxy=${https_proxy} --set global.http_proxy=${http_proxy}
8080
```
8181

8282
## Verify

β€Žhelm-charts/common/data-prep/ci-values.yamlβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
# Default values for data-prep.
5+
# This is a YAML-formatted file.
6+
# Declare variables to be passed into your templates.
7+
8+
tei:
9+
enabled: true
10+
redis-vector-db:
11+
enabled: true
12+
milvus:
13+
enabled: false

β€Žhelm-charts/common/data-prep/ci-videoqna-values.yamlβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
vdms-vector-db:
5+
enabled: true
6+
7+
image:
8+
repository: opea/dataprep-multimodal-vdms
9+
pullPolicy: IfNotPresent
10+
# Overrides the image tag whose default is the chart appVersion.
11+
tag: "latest"
12+
13+
indexName: "mega-videoqna"
14+
vdmsHost: ""
15+
vdmsPort: "8001"
16+
entryCommand: ["/bin/sh"]
17+
extraArgs: ["-c", "sleep 15 && python ingest_videos.py"]
18+
19+
# Set cacheUseHostPath to for caching encoding/embedding models and other related data
20+
global:
21+
cacheUseHostPath: ""

β€Žhelm-charts/common/embedding-usvc/ci-values.yamlβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
# Default values for embedding-usvc.
5+
# This is a YAML-formatted file.
6+
# Declare variables to be passed into your templates.
7+
8+
tei:
9+
enabled: true

β€Žhelm-charts/common/lvm-uservice/ci-values.yamlβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
# Default values for lvm-uservice.
5+
6+
lvm-serving:
7+
enabled: true

0 commit comments

Comments
Β (0)