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

Fix bae chart #288

Merged
merged 9 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
2 changes: 1 addition & 1 deletion charts/business-api-ecosystem/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: business-api-ecosystem
description: A Helm chart for running the FIWARE business API ecosystem (FIWARE Marketplace) on Kubernetes
icon: https://fiware.github.io/catalogue/img/fiware.png
version: 0.11.4
version: 0.11.5
appVersion: 9.0.1
home: https://business-api-ecosystem.readthedocs.io/en/latest/
keywords:
Expand Down
3 changes: 2 additions & 1 deletion charts/business-api-ecosystem/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# business-api-ecosystem

![Version: 0.11.4](https://img.shields.io/badge/Version-0.11.4-informational?style=flat-square) ![AppVersion: 9.0.1](https://img.shields.io/badge/AppVersion-9.0.1-informational?style=flat-square)
![Version: 0.11.5](https://img.shields.io/badge/Version-0.11.5-informational?style=flat-square) ![AppVersion: 9.0.1](https://img.shields.io/badge/AppVersion-9.0.1-informational?style=flat-square)

A Helm chart for running the FIWARE business API ecosystem (FIWARE Marketplace) on Kubernetes

Expand Down Expand Up @@ -133,6 +133,7 @@ A Helm chart for running the FIWARE business API ecosystem (FIWARE Marketplace)
| bizEcosystemLogicProxy.db.host | string | `"mongo"` | host of the database to be used |
| bizEcosystemLogicProxy.db.password | string | `"pass"` | password for connecting the database |
| bizEcosystemLogicProxy.db.port | int | `27017` | port of the database to be used |
| bizEcosystemLogicProxy.db.secretKey | string | `"dbPassword"` | key of the password inside the secret |
| bizEcosystemLogicProxy.db.user | string | `"root"` | username for connecting the database |
| bizEcosystemLogicProxy.elastic.engine | string | `"elasticsearch"` | indexing engine of logic proxy |
| bizEcosystemLogicProxy.elastic.url | string | `"elasticsearch:9200"` | URL of elasticsearch service |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ spec:
valueFrom:
secretKeyRef:
name: {{ include "bizEcosystemLogicProxy.secretName" . }}
key: dbPassword
key: {{ .Values.bizEcosystemLogicProxy.db.secretKey | quote }}
{{- if .Values.oauth.server }}
- name: BAE_LP_OAUTH2_SERVER
value: {{ .Values.oauth.server | quote }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ metadata:
{{ include "bizEcosystemRss.labels" . | nindent 4 }}
type: Opaque
data:
dbPassword: {{ .Values.bizEcosystemRss.db.password | b64enc }}
{{ .Values.bizEcosystemLogicProxy.db.secretKey }}: {{ .Values.bizEcosystemRss.db.password | b64enc }}
{{- end }}
2 changes: 2 additions & 0 deletions charts/business-api-ecosystem/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -760,6 +760,8 @@ bizEcosystemLogicProxy:
user: root
# -- password for connecting the database
password: pass
# -- key of the password inside the secret
secretKey: dbPassword

## -- elasticsearch configuration
elastic:
Expand Down