diff --git a/.github/workflows/create-release.yaml b/.github/workflows/create-release.yaml index c400f01..acdfc2d 100644 --- a/.github/workflows/create-release.yaml +++ b/.github/workflows/create-release.yaml @@ -135,6 +135,9 @@ jobs: id: package run: | cr version + app_version=$(yq e '.appVersion' ${{ env.CHART_DIR }}/Chart.yaml) + echo "Chart version: ${{ inputs.version }}" + echo "App version: $app_version" cr package ${{ env.CHART_DIR }} --package-path ${{ env.CHART_DIR }}/.cr-release-packages echo "package_file=${{ env.CHART_DIR }}/.cr-release-packages/${{ env.PACKAGE_NAME }}" >> "${GITHUB_OUTPUT}" diff --git a/charts/console/Chart.yaml b/charts/console/Chart.yaml index 621e04c..9a08bcb 100644 --- a/charts/console/Chart.yaml +++ b/charts/console/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: console -appVersion: 1.31.1 +appVersion: 1.31.2 version: 1.16.1 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 cd6ed6b..c4dfe45 100644 --- a/charts/console/README.md +++ b/charts/console/README.md @@ -167,7 +167,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.31.1` | +| `platform.image.tag` | Conduktor Console image tag (immutable tags are recommended) | `1.31.2` | | `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 | `[]` | @@ -303,7 +303,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.31.1` | +| `platformCortex.image.tag` | Conduktor Console Cortex image tag (immutable tags are recommended) | `1.31.2` | | `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/values.yaml b/charts/console/values.yaml index 3a936bd..e8c76d9 100644 --- a/charts/console/values.yaml +++ b/charts/console/values.yaml @@ -239,7 +239,7 @@ platform: image: registry: docker.io repository: conduktor/conduktor-console - tag: 1.31.1 + tag: 1.31.2 digest: "" ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' @@ -779,7 +779,7 @@ platformCortex: image: registry: docker.io repository: conduktor/conduktor-console-cortex - tag: 1.31.1 + tag: 1.31.2 digest: "" ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'