Skip to content

Commit

Permalink
feat: add env variable GRPC_ENABLE_FORK_SUPPORT (#34)
Browse files Browse the repository at this point in the history
* feat: add env variable GRPC_ENABLE_FORK_SUPPORT

* feat: set default GRPC_ENABLE_FORK_SUPPORT to 1
  • Loading branch information
RafaelOAiSquared authored Jul 9, 2024
1 parent f183ebb commit 733ef68
Show file tree
Hide file tree
Showing 3 changed files with 4 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.22.0
appVersion: "0.22.0"
version: 0.23.0
appVersion: "0.23.0"
maintainers:
- name: subintp
- name: RafaelOAiSquared
Expand Down
1 change: 1 addition & 0 deletions charts/multiwoven/templates/multiwoven-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ data:
DB_PASSWORD: {{ .Values.multiwovenConfig.dbPassword | quote }}
DB_PORT: {{ .Values.multiwovenConfig.dbPort | quote }}
DB_USERNAME: {{ .Values.multiwovenConfig.dbUsername | quote }}
GRPC_ENABLE_FORK_SUPPORT: {{ .Values.multiwovenConfig.grpcEnableForkSupport | quote }}
JWT_SECRET: {{ .Values.multiwovenConfig.jwtSecret | quote }}
NEW_RELIC_KEY: {{ .Values.multiwovenConfig.newRelicKey | quote }}
RAILS_ENV: {{ .Values.multiwovenConfig.railsEnv | quote }}
Expand Down
1 change: 1 addition & 0 deletions charts/multiwoven/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ multiwovenConfig:
dbPassword: password
dbPort: "5432"
dbUsername: multiwoven
grpcEnableForkSupport: 1
jwtSecret: ""
newRelicKey: yourkey
privateRepo: false
Expand Down

0 comments on commit 733ef68

Please sign in to comment.