Skip to content

Commit

Permalink
chore: Update Console image to latest 1.29.0 (#137)
Browse files Browse the repository at this point in the history
* chore: Update Console image to latest 1.29.0

* fix: Update password policy in chart test
  • Loading branch information
qboileau authored Nov 25, 2024
1 parent 9a39b8c commit 562867a
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion charts/console/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions charts/console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ $ helm install my-platform conduktor/console \
--create-namespace -n conduktor \
--set config.organization.name="my-org" \
--set config.admin.email="[email protected]" \
--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" \
Expand Down Expand Up @@ -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 | `[]` |
Expand Down Expand Up @@ -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 | `[]` |
Expand Down
2 changes: 1 addition & 1 deletion charts/console/ci/01-basic-no-monitoring-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ config:
name: conduktor
admin:
email: [email protected]
password: admin
password: testP4ss!

database:
name: platform
Expand Down
2 changes: 1 addition & 1 deletion charts/console/ci/02-pod-tls-selfsigned-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ config:
name: conduktor
admin:
email: [email protected]
password: admin
password: testP4ss!

database:
name: platform
Expand Down
2 changes: 1 addition & 1 deletion charts/console/ci/03-pod-tls-existingSecret-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ config:
name: conduktor
admin:
email: [email protected]
password: admin
password: testP4ss!

database:
name: platform
Expand Down
4 changes: 2 additions & 2 deletions charts/console/ci/04-credentials-from-secret-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ config:
name: conduktor
admin:
email: [email protected]
password: admin
password: testP4ss!

database:
name: platform
Expand Down Expand Up @@ -45,7 +45,7 @@ tests:
stringData:
CDK_ORGANIZATION_NAME: conduktor
CDK_ADMIN_EMAIL: [email protected]
CDK_ADMIN_PASSWORD: admin
CDK_ADMIN_PASSWORD: testP4ss!
CDK_DATABASE_USERNAME: postgres
- name: cdkt-test-04-extra
type: Opaque
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ config:
name: conduktor
admin:
email: [email protected]
password: admin
password: testP4ss!

database:
name: platform
Expand Down
6 changes: 3 additions & 3 deletions charts/console/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -1100,7 +1100,7 @@ tests:
# stringData:
# CDK_ORGANIZATION_NAME: conduktor
# CDK_ADMIN_EMAIL: [email protected]
# CDK_ADMIN_PASSWORD: admin
# CDK_ADMIN_PASSWORD: Admin123!
# CDK_DATABASE_PASSWORD: conduktor123
# CDK_DATABASE_USERNAME: postgres
secrets: []

0 comments on commit 562867a

Please sign in to comment.