Skip to content

Commit 4bbb57a

Browse files
authored
Merge branch 'openshift:main' into postgres-remaining-quota-update
2 parents dec9b0f + 9e5423c commit 4bbb57a

File tree

7 files changed

+7
-10
lines changed

7 files changed

+7
-10
lines changed

Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# vim: set filetype=dockerfile
2-
ARG LIGHTSPEED_RAG_CONTENT_IMAGE=quay.io/redhat-user-workloads/crt-nshift-lightspeed-tenant/own-app-lightspeed-rag-content@sha256:b63ed7dfb029785669c83636d85e152f974fd0c858c079f3eb20be0315885868
2+
ARG LIGHTSPEED_RAG_CONTENT_IMAGE=quay.io/redhat-user-workloads/crt-nshift-lightspeed-tenant/own-app-lightspeed-rag-content@sha256:dc8d30a1937137277ef18ea609d107cb7bb3a09adfdd09736e855abd5700cd13
33
ARG HERMETIC=false
44

55
FROM --platform=linux/amd64 ${LIGHTSPEED_RAG_CONTENT_IMAGE} as lightspeed-rag-content

docs/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"info": {
44
"title": "Swagger OpenShift LightSpeed service - OpenAPI",
55
"description": "OpenShift LightSpeed service API specification.",
6-
"version": "1.0.6"
6+
"version": "1.0.7"
77
},
88
"paths": {
99
"/v1/query": {

ols/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Service version that is read by project manager tools."""
22

33
# this should be the only version value used in all source codes!!!
4-
__version__ = "1.0.6"
4+
__version__ = "1.0.7"

scripts/build-container.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Version
4-
OLS_VERSION=v1.0.6
4+
OLS_VERSION=v1.0.7
55

66
# To build container for local use
77
if [ -z "$OLS_NO_IMAGE_CACHE" ]; then

tests/e2e/test_api.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,9 +464,8 @@ def test_azure_entra_id():
464464
json_response = response.json()
465465

466466
# checking a few major information from response
467-
assert "Kubernetes is" in json_response["response"]
468467
assert re.search(
469-
r"orchestration (tool|system|platform|engine)",
468+
r"kubernetes|openshift",
470469
json_response["response"],
471470
re.IGNORECASE,
472471
)

tests/e2e/test_query_endpoint.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,8 @@ def test_valid_question() -> None:
222222

223223
# checking a few major information from response
224224
assert json_response["conversation_id"] == cid
225-
assert "Kubernetes is" in json_response["response"]
226225
assert re.search(
227-
r"orchestration (tool|system|platform|engine)",
226+
r"kubernetes|openshift",
228227
json_response["response"],
229228
re.IGNORECASE,
230229
)

tests/e2e/test_streaming_query_endpoint.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,8 @@ def test_valid_question() -> None:
209209

210210
response_utils.check_content_type(response, constants.MEDIA_TYPE_TEXT)
211211

212-
assert "Kubernetes is" in response.text
213212
assert re.search(
214-
r"orchestration (tool|system|platform|engine)",
213+
r"kubernetes|openshift",
215214
response.text,
216215
re.IGNORECASE,
217216
)

0 commit comments

Comments
 (0)