Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dso-console to 8.19.0 #94

Merged
merged 3 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/dso-console/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: cpn-console
description: A Helm chart to deploy Cloud Pi Native Console
type: application
version: 1.11.8
appVersion: 8.18.2
version: 1.11.9
appVersion: 8.19.0
keywords: []
home: https://cloud-pi-native.fr
sources:
Expand Down
5 changes: 4 additions & 1 deletion charts/dso-console/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cpn-console

![Version: 1.11.8](https://img.shields.io/badge/Version-1.11.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.18.2](https://img.shields.io/badge/AppVersion-8.18.2-informational?style=flat-square)
![Version: 1.11.9](https://img.shields.io/badge/Version-1.11.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.19.0](https://img.shields.io/badge/AppVersion-8.19.0-informational?style=flat-square)

A Helm chart to deploy Cloud Pi Native Console

Expand Down Expand Up @@ -118,6 +118,9 @@ A Helm chart to deploy Cloud Pi Native Console
| config.name | string | `"dso-config"` | Name of the genrated config. |
| config.projectsRootDir | string | `"forge"` | Projects root directory to use in other services such as Gitlab, etc. |
| config.secrets | object | `{}` | Secrets to inject into the configuration. It is needed for server to get services informations such as urls, admin username, admin password or token, etc. |
| features | object | `{"vaultSecrets":{"enabled":true}}` | Set of feature settings - experimental |
| features.vaultSecrets | object | `{"enabled":true}` | vault secrets support |
| features.vaultSecrets.enabled | bool | `true` | enabling vault secret |
| fullnameOverride | string | `""` | String to fully override the default application name. |
| global.env | object | `{"NODE_ENV":"production"}` | Map of environment variables to inject into backend and frontend containers. |
| global.keycloak.clientIds.backend | string | `"console-backend"` | Keycloak clientId used for Console CPN client. |
Expand Down
3 changes: 3 additions & 0 deletions charts/dso-console/templates/server/clusterrole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ rules:
- user.openshift.io
- rbac.authorization.k8s.io
- argoproj.io
{{- if .Values.features.vaultSecrets.enabled }}
- secrets.hashicorp.com
{{- end }}
resources:
- '*'
verbs:
Expand Down
3 changes: 3 additions & 0 deletions charts/dso-console/templates/server/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ data:
{{- if .Values.server.env -}}
{{- include "cpnConsole.env" .Values.server | indent 2 }}
{{- end -}}
{{- if not .Values.features.vaultSecrets.enabled }}
VAULT__DISABLE_VAULT_SECRETS: "true"
{{- end }}
7 changes: 7 additions & 0 deletions charts/dso-console/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,13 @@ cnpg:
# -- Retention policy for cnpg backups recurrences.
retentionPolicy: "30d"

# -- Set of feature settings - experimental
features:
# -- vault secrets support
vaultSecrets:
# -- enabling vault secret
enabled: true

# Postgresql configuration.
## Ref: https://artifacthub.io/packages/helm/bitnami/postgresql
postgresql:
Expand Down