From 00f5058a3f6232f15ee9c4d3cfa8ce0147e8086c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henry=20T=C3=A4schner?= <129834483+HenryT-CG@users.noreply.github.com> Date: Wed, 20 Mar 2024 17:43:11 +0100 Subject: [PATCH] Fix helm charts (#4) * fix: product config * fix: product config --- helm/Chart.lock | 10 ++++++++-- helm/Chart.yaml | 16 +++++++++++++--- helm/values.yaml | 12 +++++++----- 3 files changed, 28 insertions(+), 10 deletions(-) diff --git a/helm/Chart.lock b/helm/Chart.lock index bd35f25..13e17c2 100644 --- a/helm/Chart.lock +++ b/helm/Chart.lock @@ -8,5 +8,11 @@ dependencies: - name: onecx-iam-kc-client-operator repository: oci://ghcr.io/onecx/charts version: 0.0.0-rc.10 -digest: sha256:787554e08bf8f48271792b5401aa524f884377f564e0ca8ebaf36c93ba92edfe -generated: "2024-03-13T13:42:16.489024005Z" +- name: onecx-iam-bff + repository: oci://ghcr.io/onecx/charts + version: 0.0.0-rc.5 +- name: onecx-iam-ui + repository: oci://ghcr.io/onecx/charts + version: 0.0.0-rc.5 +digest: sha256:09693e920c761e8c0dff75f885a968775a9fd5c23778e190908c7c356783f33f +generated: "2024-03-20T16:27:08.3143809+01:00" diff --git a/helm/Chart.yaml b/helm/Chart.yaml index f74fb75..7c2defe 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -10,10 +10,20 @@ dependencies: - name: onecx-iam-kc-svc version: "*-0" repository: oci://ghcr.io/onecx/charts - condition: "deployment.kc-svc" + condition: "deployment.kc-svc" alias: "kc-svc" - name: onecx-iam-kc-client-operator version: "*-0" repository: oci://ghcr.io/onecx/charts - condition: "deployment.kc-client-operator" - alias: "kc-client-operator" + condition: "deployment.kc-client-operator" + alias: "kc-client-operator" +- name: onecx-iam-bff + version: "*-0" + repository: oci://ghcr.io/onecx/charts + condition: "deployment.bff" + alias: "bff" +- name: onecx-iam-ui + version: "*-0" + repository: oci://ghcr.io/onecx/charts + condition: "deployment.ui" + alias: "ui" diff --git a/helm/values.yaml b/helm/values.yaml index 26e2193..c3c2e48 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -1,12 +1,14 @@ deployment: - kc-svc: true + ui: true + bff: true + kc-svc: true kc-client-operator: true - + product: info: data: - description: "Onecx IAM service" + description: "OneCX IAM" imageUrl: "" iconName: "id-card" - displayName: "Onecx IAM" - basePath: "/iam" \ No newline at end of file + displayName: "OneCX IAM" + basePath: "/iam" \ No newline at end of file