From d3331cfe6829ccc7f8bca1c99996a1312b8accf0 Mon Sep 17 00:00:00 2001 From: "aravind.est" Date: Fri, 20 Jun 2025 10:56:15 +0100 Subject: [PATCH] Fix kong postgres installation issue Kong postgres installation fails because of the usage of bitnami-shell image. It is deprecated and removed now. Newer version of the image is used now. Issue-ID: INT-170 Change-Id: Ie1c4b330064eb40bfa7b033d25ee8619486ff694 Signed-off-by: aravind.est --- nonrtric/helm/kongstorage/kongvalues.yaml | 2 ++ smo-install/oran_oom/kong/values.yaml | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/nonrtric/helm/kongstorage/kongvalues.yaml b/nonrtric/helm/kongstorage/kongvalues.yaml index a1ca5523..0d85b8e9 100644 --- a/nonrtric/helm/kongstorage/kongvalues.yaml +++ b/nonrtric/helm/kongstorage/kongvalues.yaml @@ -118,6 +118,8 @@ postgresql: postgresql: "5432" volumePermissions: enabled: true + image: + repository: bitnami/os-shell # This provides permission for the initcontainer to set the correct permissions containerSecurityContext: runAsNonRoot: false diff --git a/smo-install/oran_oom/kong/values.yaml b/smo-install/oran_oom/kong/values.yaml index 527f0d0a..b60fe81d 100644 --- a/smo-install/oran_oom/kong/values.yaml +++ b/smo-install/oran_oom/kong/values.yaml @@ -1,6 +1,6 @@ # ============LICENSE_START=============================================== -# Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved. +# Copyright (C) 2024-2025 OpenInfra Foundation Europe. All rights reserved. # ======================================================================== # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -137,6 +137,8 @@ kong: postgresql: "5432" volumePermissions: enabled: true + image: + repository: bitnami/os-shell primary: persistence: existingClaim: data-oran-nonrtric-postgresql-0 -- 2.16.6