Skip to content

Commit 2b7628d

Browse files
author
Andreas Mautsch
committed
changes
1 parent 5a4d3a7 commit 2b7628d

File tree

14 files changed

+14
-21
lines changed

14 files changed

+14
-21
lines changed

doc/release-notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# 1.4.1
22
- upgrade to cert-manager chart 1.18.2
33
- upgrade to apsix chart 2.11.0
4+
- upgrade to latest helm charts of postgres, s3, kafka
45
- possible fixes for istio ambient for twistlock (env.ENABLE_ORIG_SRC) and apisix (reload ingress-controller)
56

67
# 1.4.0

helm/core/catalog/application/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ postgresql:
3939

4040
initContainers:
4141
- name: check-db-ready
42-
image: postgres:17.4
42+
image: postgres:17.5
4343
command: ['sh', '-c','until pg_isready -h {{ .Values.postgresql.host }} -p 5432;do echo waiting for database; sleep 1; done;']
4444

4545
oidc:

helm/core/catalog/batch/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ postgresql:
3939

4040
initContainers:
4141
- name: check-db-ready
42-
image: postgres:17.4
42+
image: postgres:17.5
4343
command: ['sh', '-c','until pg_isready -h {{ .Values.postgresql.host }} -p 5432;do echo waiting for database; sleep 1; done;']

helm/core/core/application/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ s3:
4141
endpoint: "http://s3-minio.data:9000"
4242

4343
kafka:
44-
enabled:
44+
enabled: true
4545
server: "kafka.data"
4646
port: "9092"
4747

4848
initContainers:
4949
- name: check-db-ready
50-
image: postgres:17.4
50+
image: postgres:17.5
5151
command: ['sh', '-c','until pg_isready -h {{ .Values.postgresql.host }} -p 5432;do echo waiting for database; sleep 1; done;']
5252

5353
oidc:

helm/core/core/provisioning/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ kafka:
4747

4848
initContainers:
4949
- name: check-db-ready
50-
image: postgres:17.4
50+
image: postgres:17.5
5151
command: ['sh', '-c','until pg_isready -h {{ .Values.postgresql.host }} -p 5432;do echo waiting for database; sleep 1; done;']
5252

5353
oidc:

helm/example/quarkus/person-service/application/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ postgresql:
3131

3232
initContainers:
3333
- name: check-db-ready
34-
image: postgres:17.4
34+
image: postgres:17.5
3535
command: ['sh', '-c','until pg_isready -h {{ .Values.postgresql.host }} -p 5432;do echo waiting for database; sleep 1; done;']
3636

3737
oidc:

helm/example/spring/person-service/application/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ postgresql:
4141

4242
initContainers:
4343
- name: check-db-ready
44-
image: postgres:17.4
44+
image: postgres:17.5
4545
command: ['sh', '-c','until pg_isready -h {{ .Values.postgresql.host }} -p 5432;do echo waiting for database; sleep 1; done;']
4646

4747
oidc:

helm/example/spring/person-service/provisioning/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ postgresql:
4141

4242
initContainers:
4343
- name: check-db-ready
44-
image: postgres:17.4
44+
image: postgres:17.5
4545
command: ['sh', '-c','until pg_isready -h {{ .Values.postgresql.host }} -p 5432;do echo waiting for database; sleep 1; done;']
4646

4747
oidc:

helm/infra/keycloak/application/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ service:
2828

2929
initContainers:
3030
- name: check-db-ready
31-
image: postgres:17.4
31+
image: postgres:17.5
3232
command: ['sh', '-c','until pg_isready -h keycloak-postgres -p 5432;do echo waiting for database; sleep 1; done;']
3333

3434
database:

terraform/core/core.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,6 @@ resource "helm_release" "core-application" {
2121
value = local.oidc_enabled
2222
}
2323

24-
set {
25-
name = "kafka.enabled"
26-
value = local.oidc_enabled
27-
}
28-
2924
# secrets
3025
set_sensitive {
3126
name = "oidc.session.secret"

0 commit comments

Comments
 (0)