Skip to content

Commit d236cab

Browse files
authored
update lightning env vars (#108)
* update lightning env vars * fix comment spacing caused by yaml formatter * revert additional yaml auto-formatter formatting * revert additional yaml auto-formatter formatting * revert additional yaml auto-formatter formatting * update chart version * remove huggingface value
1 parent 4b22b50 commit d236cab

File tree

3 files changed

+55
-14
lines changed

3 files changed

+55
-14
lines changed

charts/multiwoven/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ description: |
44
Multiwoven is an open-source reverse ETL tool, offering an alternative to qHightouch, Census, and similar platforms. 🔥
55
# kubeVersion: ">=1.16.0"
66
type: application
7-
version: 0.71.0
8-
appVersion: "0.71.0"
7+
version: 0.72.0
8+
appVersion: "0.72.0"
99
home: https://github.com/Multiwoven/multiwoven
1010
sources:
1111
- https://docs.squared.ai/open-source/guides/setup/helm

charts/multiwoven/templates/lightning-deployment.yaml

Lines changed: 34 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,42 @@ spec:
3030
spec:
3131
containers:
3232
- env:
33-
- name: VERSION
34-
value: {{ .Values.lightningConfig.version | quote}}
35-
- name: HF_TOKEN
36-
value: {{ .Values.lightningConfig.hfToken | quote }}
37-
- name: HUGGINGFACE_BILLING_ACCOUNT
38-
value: {{ .Values.lightningConfig.hfBillingAccount | quote }}
39-
- name: NANONETS_API_KEY
40-
value: {{ .Values.lightningConfig.nanonetsApiKey | quote }}
4133
- name: PORT
4234
value: {{ (index .Values.lightning.ports 0).port | quote }}
35+
36+
- name: XPERT_API_KEY
37+
value: {{ .Values.lightningConfig.xpertApiKey | quote }}
38+
- name: XPERT_ENDPOINT
39+
value: {{ .Values.lightningConfig.xpertEndpoint | quote }}
40+
- name: XPERT_MODEL
41+
value: {{ .Values.lightningConfig.xpertModel | quote }}
42+
43+
- name: SENTINEL_API_KEY
44+
value: {{ .Values.lightningConfig.sentinelApiKey | quote }}
45+
- name: SENTINEL_ENDPOINT
46+
value: {{ .Values.lightningConfig.sentinelEndpoint | quote }}
47+
- name: SENTINEL_MODEL
48+
value: {{ .Values.lightningConfig.sentinelModel | quote }}
49+
50+
- name: PATHFINDER_API_KEY
51+
value: {{ .Values.lightningConfig.pathfinderApiKey | quote }}
52+
- name: PATHFINDER_ENDPOINT
53+
value: {{ .Values.lightningConfig.pathfinderEndpoint | quote }}
54+
- name: PATHFINDER_MODEL
55+
value: {{ .Values.lightningConfig.pathfinderModel | quote }}
56+
57+
- name: SEEMORE_API_KEY
58+
value: {{ .Values.lightningConfig.seemoreApiKey | quote }}
59+
- name: STRUCTURED_EXTRACTION_API_KEY
60+
value: {{ .Values.lightningConfig.structuredExtractionApiKey | quote }}
61+
- name: STRUCTURED_EXTRACTION_MODEL
62+
value: {{ .Values.lightningConfig.structuredExtractionModel | quote }}
63+
- name: STRUCTURED_EXTRACTION_ENDPOINT
64+
value: {{ .Values.lightningConfig.structuredExtractionEndpoint | quote }}
65+
- name: SEEMORE_VLM
66+
value: {{ .Values.lightningConfig.seemoreVlm | quote }}
67+
- name: SEEMORE_ENDPOINT
68+
value: {{ .Values.lightningConfig.seemoreEndpoint | quote }}
4369
image: {{ .Values.lightning.lightning.image.repository }}:{{ .Values.lightning.lightning.image.tag | default .Chart.AppVersion }}
4470
securityContext:
4571
runAsUser: {{ .Values.lightning.lightning.containerSecurityContext.runAsUser }}

charts/multiwoven/values.yaml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,26 @@ multiwovenConfig:
9696
workerHost: worker.multiwoven.com
9797

9898
lightningConfig:
99-
version: ""
100-
hfToken: ""
101-
hfBillingAccount: ""
10299
lightningUrl: http://multiwoven-lightning:6000
103-
nanonetsApiKey: ""
100+
101+
xpertApiKey: ""
102+
xpertEndpoint: ""
103+
xpertModel: ""
104+
105+
sentinelApiKey: ""
106+
sentinelEndpoint: ""
107+
sentinelModel: ""
108+
109+
pathfinderApiKey: ""
110+
pathfinderEndpoint: ""
111+
pathfinderModel: ""
112+
113+
seemoreApiKey: ""
114+
structuredExtractionApiKey: ""
115+
structuredExtractionModel: ""
116+
structuredExtractionEndpoint: ""
117+
seemoreVlm: ""
118+
seemoreEndpoint: ""
104119

105120
automountServiceAccountToken:
106121
enabled: true

0 commit comments

Comments
 (0)