Skip to content

Commit 92df348

Browse files
[cve-fix] Bump up GO version to fix cve in stdlib pkg (#1264)
In current go version version we have high severity cves in stdlib pkg, therefore bumping up go version to remediate cves. - Postgres Image scan result [here](https://github.com/IBM/project-ai-services/actions/runs/31982238249/job/95250980726) - Caddy Image scan result [here](https://github.com/IBM/project-ai-services/actions/runs/31982238249/job/95250980811) - Ai-Services Image scan result [here](https://github.com/IBM/project-ai-services/actions/runs/31982238249/job/95250980867) --------- Signed-off-by: Adarsh Agrawal <adarsh.agrawal1@ibm.com>
1 parent 8e0d913 commit 92df348

16 files changed

Lines changed: 17 additions & 17 deletions

File tree

ai-services/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG CMD_VERSION
44
ARG GITCOMMIT
55
ARG BUILDDATE
66
ARG BUILDTAGS
7-
ARG GO_VERSION=1.26.5
7+
ARG GO_VERSION=1.26.6
88

99
WORKDIR /go/src/github.com/project-ai-services/ai-services
1010

ai-services/assets/applications/rag-cpu/podman/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ opensearch:
4646

4747
postgres:
4848
# @hidden
49-
image: icr.io/ai-services-cicd/postgres:18-4
49+
image: icr.io/ai-services-cicd/postgres:18-5
5050
# @description Password for PostgreSQL default 'postgres' user authentication. Must be at least 8 characters. Use this to override the default password.
5151
password: "Aiservicesdb@1234"
5252

ai-services/assets/applications/rag-dev/openshift/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ opensearch:
9595

9696
postgres:
9797
# @hidden
98-
image: icr.io/ai-services-cicd/postgres:18-4
98+
image: icr.io/ai-services-cicd/postgres:18-5
9999
# @description Sets the storage limit for the PostgreSQL service (Default: 5Gi). Override by passing a value with a unit suffix (e.g., Mi, Gi).
100100
storage: 5Gi
101101
# @description Password for PostgreSQL default 'postgres' user authentication. Must be at least 8 characters. Use this to override the default password.

ai-services/assets/applications/rag-dev/podman/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ opensearch:
4646

4747
postgres:
4848
# @hidden
49-
image: icr.io/ai-services-cicd/postgres:18-4
49+
image: icr.io/ai-services-cicd/postgres:18-5
5050
# @description Password for PostgreSQL default 'postgres' user authentication. Must be at least 8 characters. Use this to override the default password.
5151
password: "Aiservicesdb@1234"
5252

ai-services/assets/applications/rag/openshift/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ opensearch:
9595

9696
postgres:
9797
# @hidden
98-
image: icr.io/ai-services-cicd/postgres:18-4
98+
image: icr.io/ai-services-cicd/postgres:18-5
9999
# @description Sets the storage limit for the PostgreSQL service (Default: 5Gi). Override by passing a value with a unit suffix (e.g., Mi, Gi).
100100
storage: 5Gi
101101
# @description Password for PostgreSQL default 'postgres' user authentication. Must be at least 8 characters. Use this to override the default password.

ai-services/assets/applications/rag/podman/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ opensearch:
4646

4747
postgres:
4848
# @hidden
49-
image: icr.io/ai-services-cicd/postgres:18-4
49+
image: icr.io/ai-services-cicd/postgres:18-5
5050
# @description Password for PostgreSQL default 'postgres' user authentication. Must be at least 8 characters. Use this to override the default password.
5151
password: "Aiservicesdb@1234"
5252

ai-services/assets/catalog/openshift/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ backend:
2121
cpu: "1000m"
2222

2323
db:
24-
image: icr.io/ai-services-cicd/postgres:18-4
24+
image: icr.io/ai-services-cicd/postgres:18-5
2525
user: "postgres"
2626
database: "ai_services"
2727
password: ""

ai-services/assets/catalog/podman/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ backend:
1515

1616
db:
1717
port: ""
18-
image: icr.io/ai-services-cicd/postgres:18-4
18+
image: icr.io/ai-services-cicd/postgres:18-5
1919
user: "postgres"
2020
database: "ai_services"
2121
password: ""
@@ -26,6 +26,6 @@ db:
2626
memory: "1Gi"
2727

2828
caddy:
29-
image: icr.io/ai-services-cicd/caddy:v2.11.4-1
29+
image: icr.io/ai-services-cicd/caddy:v2.11.4-2
3030
adminPort: ""
3131
httpsPort: ""

ai-services/assets/services/digitize/openshift/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ digitizeUi:
2222
memory: "512Mi"
2323

2424
postgres:
25-
image: icr.io/ai-services-cicd/postgres:18-4
25+
image: icr.io/ai-services-cicd/postgres:18-5
2626
storage: 5Gi
2727
# @generate:password
2828
password: ""

ai-services/assets/services/digitize/podman/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ digitizeUi:
77
image: icr.io/ai-services-cicd/digitize-ui:v0.0.31
88

99
postgres:
10-
image: icr.io/ai-services-cicd/postgres:18-4
10+
image: icr.io/ai-services-cicd/postgres:18-5
1111
username: "postgres"
1212
# @generate:password
1313
password: ""

0 commit comments

Comments
 (0)