Skip to content
Open
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
18 changes: 18 additions & 0 deletions charts/tidepool/charts/auth/templates/1-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -422,12 +422,24 @@ spec:
name: oura
key: JotformBaseURL
optional: true
- name: TIDEPOOL_OURA_JOTFORM_ENABLED
valueFrom:
configMapKeyRef:
name: oura
key: JotformEnabled
optional: true
- name: TIDEPOOL_OURA_JOTFORM_FORM_ID
valueFrom:
configMapKeyRef:
name: oura
key: JotformFormId
optional: true
- name: TIDEPOOL_OURA_JOTFORM_TEAM_ID
valueFrom:
configMapKeyRef:
name: oura
key: JotformTeamId
optional: true
- name: TIDEPOOL_CUSTOMERIO_SITE_ID
valueFrom:
configMapKeyRef:
Expand All @@ -446,6 +458,12 @@ spec:
name: customer-io
key: TrackAPIKey
optional: true
- name: TIDEPOOL_OURA_SHOPIFY_ENABLED
valueFrom:
configMapKeyRef:
name: oura
key: ShopifyEnabled
optional: true
- name: TIDEPOOL_OURA_SHOPIFY_STORE_ID
valueFrom:
configMapKeyRef:
Expand Down
3 changes: 3 additions & 0 deletions charts/tidepool/charts/oura/templates/0-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ data:
ClientURL: {{ .Values.configmap.clientURL | default "" }}
PartnerURL: {{ .Values.configmap.partnerURL | default "" }}
JotformBaseURL: "{{ .Values.configmap.jotformBaseURL | default "" }}"
JotformEnabled: "{{ .Values.configmap.jotformEnabled }}"
JotformFormId: "{{ .Values.configmap.jotformFormId | default "" }}"
JotformTeamId: "{{ .Values.configmap.jotformTeamId | default "" }}"
ShopifyEnabled: "{{ .Values.configmap.shopifyEnabled }}"
ShopifyStoreId: "{{ .Values.configmap.shopifyStoreId | default "" }}"
{{ end }}
6 changes: 6 additions & 0 deletions charts/tidepool/charts/oura/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,14 @@ configmap:
partnerURL: ""
# -- jotform base URL
jotformBaseURL: ""
# -- jotform enabled
jotformEnabled: "false"
# -- jotform OURA eligibility form ID
jotformFormId: ""
# -- jotform team id
jotformTeamId: ""
# -- shopify enabled
shopifyEnabled: "false"
# -- shopify store ID
shopifyStoreId: ""
secret:
Expand Down