Skip to content

Commit e7b000e

Browse files
committed
Freeze OPEA images tag
Signed-off-by: NeuralChatBot <grp_neural_chat_bot@intel.com>
1 parent 723fdde commit e7b000e

78 files changed

Lines changed: 146 additions & 146 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

AudioQnA/docker/gaudi/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export LLM_SERVICE_PORT=3007
8181

8282
```bash
8383
cd GenAIExamples/AudioQnA/docker/gaudi/
84-
docker compose up -d
84+
TAG=v0.9 docker compose up -d
8585
```
8686

8787
## 🚀 Test MicroServices

AudioQnA/docker/xeon/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export LLM_SERVICE_PORT=3007
8181

8282
```bash
8383
cd GenAIExamples/AudioQnA/docker/xeon/
84-
docker compose up -d
84+
TAG=v0.9 docker compose up -d
8585
```
8686

8787
## 🚀 Test MicroServices

AudioQnA/kubernetes/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ The AudioQnA application is defined as a Custom Resource (CR) file that the abov
1515
The AudioQnA uses the below prebuilt images if you choose a Xeon deployment
1616

1717
- tgi-service: ghcr.io/huggingface/text-generation-inference:1.4
18-
- llm: opea/llm-tgi:latest
19-
- asr: opea/asr:latest
20-
- whisper: opea/whisper:latest
21-
- tts: opea/tts:latest
22-
- speecht5: opea/speecht5:latest
18+
- llm: opea/llm-tgi:v0.9
19+
- asr: opea/asr:v0.9
20+
- whisper: opea/whisper:v0.9
21+
- tts: opea/tts:v0.9
22+
- speecht5: opea/speecht5:v0.9
2323

2424

2525
Should you desire to use the Gaudi accelerator, two alternate images are used for the embedding and llm services.
2626
For Gaudi:
2727

2828
- tgi-service: ghcr.io/huggingface/tgi-gaudi:1.2.1
29-
- whisper-gaudi: opea/whisper-gaudi:latest
30-
- speecht5-gaudi: opea/speecht5-gaudi:latest
29+
- whisper-gaudi: opea/whisper-gaudi:v0.9
30+
- speecht5-gaudi: opea/speecht5-gaudi:v0.9
3131

3232
> [NOTE]
3333
> Please refer to [Xeon README](https://github.com/opea-project/GenAIExamples/blob/main/AudioQnA/docker/xeon/README.md) or [Gaudi README](https://github.com/opea-project/GenAIExamples/blob/main/AudioQnA/docker/gaudi/README.md) to build the OPEA images. These too will be available on Docker Hub soon to simplify use.

AudioQnA/kubernetes/manifests/gaudi/audioqna.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ spec:
5050
- envFrom:
5151
- configMapRef:
5252
name: audio-qna-config
53-
image: opea/asr:latest
53+
image: opea/asr:v0.9
5454
imagePullPolicy: IfNotPresent
5555
name: asr-deploy
5656
args: null
@@ -101,7 +101,7 @@ spec:
101101
- envFrom:
102102
- configMapRef:
103103
name: audio-qna-config
104-
image: opea/whisper-gaudi:latest
104+
image: opea/whisper-gaudi:v0.9
105105
imagePullPolicy: IfNotPresent
106106
name: whisper-deploy
107107
args: null
@@ -164,7 +164,7 @@ spec:
164164
- envFrom:
165165
- configMapRef:
166166
name: audio-qna-config
167-
image: opea/tts:latest
167+
image: opea/tts:v0.9
168168
imagePullPolicy: IfNotPresent
169169
name: tts-deploy
170170
args: null
@@ -215,7 +215,7 @@ spec:
215215
- envFrom:
216216
- configMapRef:
217217
name: audio-qna-config
218-
image: opea/speecht5-gaudi:latest
218+
image: opea/speecht5-gaudi:v0.9
219219
imagePullPolicy: IfNotPresent
220220
name: speecht5-deploy
221221
args: null
@@ -365,7 +365,7 @@ spec:
365365
- envFrom:
366366
- configMapRef:
367367
name: audio-qna-config
368-
image: opea/llm-tgi:latest
368+
image: opea/llm-tgi:v0.9
369369
imagePullPolicy: IfNotPresent
370370
name: llm-deploy
371371
args: null
@@ -416,7 +416,7 @@ spec:
416416
- envFrom:
417417
- configMapRef:
418418
name: audio-qna-config
419-
image: opea/audioqna:latest
419+
image: opea/audioqna:v0.9
420420
imagePullPolicy: IfNotPresent
421421
name: audioqna-backend-server-deploy
422422
args: null

AudioQnA/kubernetes/manifests/xeon/audioqna.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ spec:
5050
- envFrom:
5151
- configMapRef:
5252
name: audio-qna-config
53-
image: opea/asr:latest
53+
image: opea/asr:v0.9
5454
imagePullPolicy: IfNotPresent
5555
name: asr-deploy
5656
args: null
@@ -101,7 +101,7 @@ spec:
101101
- envFrom:
102102
- configMapRef:
103103
name: audio-qna-config
104-
image: opea/whisper:latest
104+
image: opea/whisper:v0.9
105105
imagePullPolicy: IfNotPresent
106106
name: whisper-deploy
107107
args: null
@@ -152,7 +152,7 @@ spec:
152152
- envFrom:
153153
- configMapRef:
154154
name: audio-qna-config
155-
image: opea/tts:latest
155+
image: opea/tts:v0.9
156156
imagePullPolicy: IfNotPresent
157157
name: tts-deploy
158158
args: null
@@ -203,7 +203,7 @@ spec:
203203
- envFrom:
204204
- configMapRef:
205205
name: audio-qna-config
206-
image: opea/speecht5:latest
206+
image: opea/speecht5:v0.9
207207
imagePullPolicy: IfNotPresent
208208
name: speecht5-deploy
209209
args: null
@@ -321,7 +321,7 @@ spec:
321321
- envFrom:
322322
- configMapRef:
323323
name: audio-qna-config
324-
image: opea/llm-tgi:latest
324+
image: opea/llm-tgi:v0.9
325325
imagePullPolicy: IfNotPresent
326326
name: llm-deploy
327327
args: null
@@ -372,7 +372,7 @@ spec:
372372
- envFrom:
373373
- configMapRef:
374374
name: audio-qna-config
375-
image: opea/audioqna:latest
375+
image: opea/audioqna:v0.9
376376
imagePullPolicy: IfNotPresent
377377
name: audioqna-backend-server-deploy
378378
args: null

ChatQnA/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Find the corresponding [compose.yaml](./docker/gaudi/compose.yaml).
7878

7979
```bash
8080
cd GenAIExamples/ChatQnA/docker/gaudi/
81-
docker compose up -d
81+
TAG=v0.9 docker compose up -d
8282
```
8383

8484
> Notice: Currently only the **Habana Driver 1.16.x** is supported for Gaudi.
@@ -91,7 +91,7 @@ Find the corresponding [compose.yaml](./docker/xeon/compose.yaml).
9191

9292
```bash
9393
cd GenAIExamples/ChatQnA/docker/xeon/
94-
docker compose up -d
94+
TAG=v0.9 docker compose up -d
9595
```
9696

9797
Refer to the [Xeon Guide](./docker/xeon/README.md) for more instructions on building docker images from source.
@@ -100,7 +100,7 @@ Refer to the [Xeon Guide](./docker/xeon/README.md) for more instructions on buil
100100

101101
```bash
102102
cd GenAIExamples/ChatQnA/docker/gpu/
103-
docker compose up -d
103+
TAG=v0.9 docker compose up -d
104104
```
105105

106106
Refer to the [NVIDIA GPU Guide](./docker/gpu/README.md) for more instructions on building docker images from source.

ChatQnA/benchmark/four_gaudi/chatqna_mega_service_run.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
- envFrom:
3333
- configMapRef:
3434
name: qna-config
35-
image: opea/chatqna:latest
35+
image: opea/chatqna:v0.9
3636
imagePullPolicy: IfNotPresent
3737
name: chatqna-backend-server-deploy
3838
args: null

ChatQnA/benchmark/four_gaudi/dataprep-microservice_run.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
configMapKeyRef:
4141
name: qna-config
4242
key: INDEX_NAME
43-
image: opea/dataprep-redis:latest
43+
image: opea/dataprep-redis:v0.9
4444
imagePullPolicy: IfNotPresent
4545
name: dataprep-deploy
4646
args: null

ChatQnA/benchmark/four_gaudi/embedding-microservice_run.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
- envFrom:
3333
- configMapRef:
3434
name: qna-config
35-
image: opea/embedding-tei:latest
35+
image: opea/embedding-tei:v0.9
3636
imagePullPolicy: IfNotPresent
3737
name: embedding-deploy
3838
args: null

ChatQnA/benchmark/four_gaudi/llm-microservice_run.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
- envFrom:
3333
- configMapRef:
3434
name: qna-config
35-
image: opea/llm-tgi:latest
35+
image: opea/llm-tgi:v0.9
3636
imagePullPolicy: IfNotPresent
3737
name: llm-deploy
3838
args: null

0 commit comments

Comments
 (0)