From 2e0ae0bd0ad10eeb082fa7ca2e61921b5657d8c7 Mon Sep 17 00:00:00 2001 From: klinch0 <68821526+klinch0@users.noreply.github.com> Date: Wed, 11 Dec 2024 12:28:20 +0300 Subject: [PATCH] fix disable oidc (#525) ## Summary by CodeRabbit - **Bug Fixes** - Improved conditional logic for OIDC functionality, ensuring accurate deployment of related components. - **Chores** - Updated dependencies for the `keycloak` release to ensure proper operation with the `postgres-operator`. - **New Features** - Enhanced configuration handling for OIDC, affecting the inclusion of related components based on strict equality checks. --- packages/core/platform/bundles/paas-full.yaml | 2 +- packages/core/platform/bundles/paas-hosted.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/platform/bundles/paas-full.yaml b/packages/core/platform/bundles/paas-full.yaml index 784058e3..cde3d212 100644 --- a/packages/core/platform/bundles/paas-full.yaml +++ b/packages/core/platform/bundles/paas-full.yaml @@ -223,7 +223,7 @@ releases: {{- end }} {{- end }} {{- end }} - {{- if $oidcEnabled }} + {{- if eq $oidcEnabled "true" }} dependsOn: [keycloak-configure] valuesFrom: - kind: ConfigMap diff --git a/packages/core/platform/bundles/paas-hosted.yaml b/packages/core/platform/bundles/paas-hosted.yaml index 4fd31f6b..2aedbc01 100644 --- a/packages/core/platform/bundles/paas-hosted.yaml +++ b/packages/core/platform/bundles/paas-hosted.yaml @@ -153,7 +153,7 @@ releases: {{- end }} {{- end }} {{- end }} - {{- if $oidcEnabled }} + {{- if eq $oidcEnabled "true" }} dependsOn: [keycloak-configure] valuesFrom: - kind: ConfigMap