From 562867a8b49a79e7689ef63392e036742c7c9b6c Mon Sep 17 00:00:00 2001 From: Quentin Date: Mon, 25 Nov 2024 16:01:23 +0100 Subject: [PATCH] chore: Update Console image to latest 1.29.0 (#137) * chore: Update Console image to latest 1.29.0 * fix: Update password policy in chart test --- charts/console/Chart.yaml | 2 +- charts/console/README.md | 6 +++--- charts/console/ci/01-basic-no-monitoring-values.yaml | 2 +- charts/console/ci/02-pod-tls-selfsigned-values.yaml | 2 +- charts/console/ci/03-pod-tls-existingSecret-values.yaml | 2 +- charts/console/ci/04-credentials-from-secret-values.yaml | 4 ++-- .../console/ci/05-external-monitoring-storage-values.yaml | 2 +- charts/console/values.yaml | 6 +++--- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/charts/console/Chart.yaml b/charts/console/Chart.yaml index dccb17d..055d8e6 100644 --- a/charts/console/Chart.yaml +++ b/charts/console/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: console -appVersion: 1.28.0 +appVersion: 1.29.0 version: 1.13.0 description: Helm chart to deploy Conduktor Console on Kubernetes icon: https://www.conduktor.io/svgs/logo/symbol.svg diff --git a/charts/console/README.md b/charts/console/README.md index a0fcb14..26a584f 100644 --- a/charts/console/README.md +++ b/charts/console/README.md @@ -14,7 +14,7 @@ $ helm install my-platform conduktor/console \ --create-namespace -n conduktor \ --set config.organization.name="my-org" \ --set config.admin.email="admin@conduktor.io" \ - --set config.admin.password="admin" \ + --set config.admin.password="Admin123!" \ --set config.database.password="postgres" \ --set config.database.username="postgres" \ --set config.database.host="postgresql" \ @@ -132,7 +132,7 @@ Refer to our [documentation](https://docs.conduktor.io/platform/configuration/co | --------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------- | | `platform.image.registry` | Conduktor Console image registry | `docker.io` | | `platform.image.repository` | Conduktor Console image repository | `conduktor/conduktor-console` | -| `platform.image.tag` | Conduktor Console image tag (immutable tags are recommended) | `1.28.0` | +| `platform.image.tag` | Conduktor Console image tag (immutable tags are recommended) | `1.29.0` | | `platform.image.digest` | Conduktor Console image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag image tag (immutable tags are recommended) | `""` | | `platform.image.pullPolicy` | Conduktor Console image pull policy | `IfNotPresent` | | `platform.image.pullSecrets` | Conduktor Console image pull secrets | `[]` | @@ -268,7 +268,7 @@ Console expose metrics that could be collected and presented if your environment | `platformCortex.enabled` | Enable Conduktor Console Cortex | `true` | | `platformCortex.image.registry` | Conduktor Console Cortex image registry | `docker.io` | | `platformCortex.image.repository` | Conduktor Console Cortex image repository | `conduktor/conduktor-console-cortex` | -| `platformCortex.image.tag` | Conduktor Console Cortex image tag (immutable tags are recommended) | `1.28.0` | +| `platformCortex.image.tag` | Conduktor Console Cortex image tag (immutable tags are recommended) | `1.29.0` | | `platformCortex.image.digest` | Conduktor Console Cortex image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag image tag (immutable tags are recommended) | `""` | | `platformCortex.image.pullPolicy` | Conduktor Console Cortex image pull policy | `IfNotPresent` | | `platformCortex.image.pullSecrets` | Conduktor Console Cortex image pull secrets | `[]` | diff --git a/charts/console/ci/01-basic-no-monitoring-values.yaml b/charts/console/ci/01-basic-no-monitoring-values.yaml index d95385c..ed39d9d 100644 --- a/charts/console/ci/01-basic-no-monitoring-values.yaml +++ b/charts/console/ci/01-basic-no-monitoring-values.yaml @@ -7,7 +7,7 @@ config: name: conduktor admin: email: admin@conduktor.io - password: admin + password: testP4ss! database: name: platform diff --git a/charts/console/ci/02-pod-tls-selfsigned-values.yaml b/charts/console/ci/02-pod-tls-selfsigned-values.yaml index a74c27c..3fd03a8 100644 --- a/charts/console/ci/02-pod-tls-selfsigned-values.yaml +++ b/charts/console/ci/02-pod-tls-selfsigned-values.yaml @@ -7,7 +7,7 @@ config: name: conduktor admin: email: admin@conduktor.io - password: admin + password: testP4ss! database: name: platform diff --git a/charts/console/ci/03-pod-tls-existingSecret-values.yaml b/charts/console/ci/03-pod-tls-existingSecret-values.yaml index 90745b4..caa331b 100644 --- a/charts/console/ci/03-pod-tls-existingSecret-values.yaml +++ b/charts/console/ci/03-pod-tls-existingSecret-values.yaml @@ -7,7 +7,7 @@ config: name: conduktor admin: email: admin@conduktor.io - password: admin + password: testP4ss! database: name: platform diff --git a/charts/console/ci/04-credentials-from-secret-values.yaml b/charts/console/ci/04-credentials-from-secret-values.yaml index 012b74d..63666fa 100644 --- a/charts/console/ci/04-credentials-from-secret-values.yaml +++ b/charts/console/ci/04-credentials-from-secret-values.yaml @@ -7,7 +7,7 @@ config: name: conduktor admin: email: admin@conduktor.io - password: admin + password: testP4ss! database: name: platform @@ -45,7 +45,7 @@ tests: stringData: CDK_ORGANIZATION_NAME: conduktor CDK_ADMIN_EMAIL: admin@conduktor.io - CDK_ADMIN_PASSWORD: admin + CDK_ADMIN_PASSWORD: testP4ss! CDK_DATABASE_USERNAME: postgres - name: cdkt-test-04-extra type: Opaque diff --git a/charts/console/ci/05-external-monitoring-storage-values.yaml b/charts/console/ci/05-external-monitoring-storage-values.yaml index 9a052b0..d23fc9b 100644 --- a/charts/console/ci/05-external-monitoring-storage-values.yaml +++ b/charts/console/ci/05-external-monitoring-storage-values.yaml @@ -6,7 +6,7 @@ config: name: conduktor admin: email: admin@conduktor.io - password: admin + password: testP4ss! database: name: platform diff --git a/charts/console/values.yaml b/charts/console/values.yaml index f42f951..a6460fb 100644 --- a/charts/console/values.yaml +++ b/charts/console/values.yaml @@ -234,7 +234,7 @@ platform: image: registry: docker.io repository: conduktor/conduktor-console - tag: 1.28.0 + tag: 1.29.0 digest: "" ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' @@ -774,7 +774,7 @@ platformCortex: image: registry: docker.io repository: conduktor/conduktor-console-cortex - tag: 1.28.0 + tag: 1.29.0 digest: "" ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' @@ -1100,7 +1100,7 @@ tests: # stringData: # CDK_ORGANIZATION_NAME: conduktor # CDK_ADMIN_EMAIL: admin@conduktor.io - # CDK_ADMIN_PASSWORD: admin + # CDK_ADMIN_PASSWORD: Admin123! # CDK_DATABASE_PASSWORD: conduktor123 # CDK_DATABASE_USERNAME: postgres secrets: []