Skip to content

Commit

Permalink
chore: add new env variables (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
subintp authored Jul 5, 2024
1 parent 73e66fd commit f183ebb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/multiwoven/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: multiwoven
description: Open-source reverse ETL, an alternative to Hightouch, Census etc. 🔥
type: application
version: 0.21.0
appVersion: "0.21.0"
version: 0.22.0
appVersion: "0.22.0"
maintainers:
- name: subintp
- name: RafaelOAiSquared
Expand Down
2 changes: 2 additions & 0 deletions charts/multiwoven/templates/multiwoven-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ metadata:
io.kompose.service: {{ include "chart.fullname" . }}-config
{{- include "chart.labels" . | nindent 4 }}
data:
ALLOWED_HOST: {{ .Values.multiwovenConfig.allowedHost | quote }}
API_HOST: {{ .Values.multiwovenConfig.apiHost | quote }}
APP_ENV: {{ .Values.multiwovenConfig.appEnv | quote }}
APP_REVISION: {{ .Values.multiwovenConfig.appRevision | quote }}
Expand All @@ -20,6 +21,7 @@ data:
DB_PASSWORD: {{ .Values.multiwovenConfig.dbPassword | quote }}
DB_PORT: {{ .Values.multiwovenConfig.dbPort | quote }}
DB_USERNAME: {{ .Values.multiwovenConfig.dbUsername | quote }}
JWT_SECRET: {{ .Values.multiwovenConfig.jwtSecret | quote }}
NEW_RELIC_KEY: {{ .Values.multiwovenConfig.newRelicKey | quote }}
RAILS_ENV: {{ .Values.multiwovenConfig.railsEnv | quote }}
RAILS_LOG_LEVEL: {{ .Values.multiwovenConfig.railsLogLevel | quote }}
Expand Down
2 changes: 2 additions & 0 deletions charts/multiwoven/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
kubernetesClusterDomain: cluster.local
kubernetesNamespace: multiwoven
multiwovenConfig:
allowedHost: ""
apiHost: api.multiwoven.com
appRevision: unknown
appEnv: community
Expand All @@ -12,6 +13,7 @@ multiwovenConfig:
dbPassword: password
dbPort: "5432"
dbUsername: multiwoven
jwtSecret: ""
newRelicKey: yourkey
privateRepo: false
railsEnv: development
Expand Down

0 comments on commit f183ebb

Please sign in to comment.