File tree Expand file tree Collapse file tree 4 files changed +9
-0
lines changed
Expand file tree Collapse file tree 4 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ A Helm chart for Kubernetes
2323| secret.data_ .ClientSecret | string | ` "" ` | plaintext OAuth2 client secret |
2424| secret.data_ .StateSalt | string | ` "" ` | plaintext OAuth2 state salt |
2525| secret.data_ .PartnerID | string | ` "" ` | plaintext partner id (same as OAuth2 client id) |
26+ | secret.data_ .PartnerSecret | string | ` "" ` | plaintext partner secret (callback authorization) |
2627
2728----------------------------------------------
2829Autogenerated from chart metadata using [ helm-docs v1.3.0] ( https://github.com/norwoodj/helm-docs/releases/v1.3.0 )
Original file line number Diff line number Diff line change 77 ClientSecret : {{ .ClientSecret | default "" | b64enc | quote }}
88 StateSalt : {{ .StateSalt | default "" | b64enc | quote }}
99 PartnerId : {{ .PartnerId | default "" | b64enc | quote }}
10+ PartnerSecret : {{ .PartnerSecret | default "" | b64enc | quote }}
1011{{- end }}
1112kind : Secret
1213metadata :
Original file line number Diff line number Diff line change @@ -14,3 +14,4 @@ secret:
1414 ClientSecret : " "
1515 StateSalt : " "
1616 PartnerId : " "
17+ PartnerSecret : " "
Original file line number Diff line number Diff line change @@ -111,6 +111,12 @@ spec:
111111 name : abbott
112112 key : PartnerId
113113 optional : true
114+ - name : TIDEPOOL_ABBOTT_CLIENT_PARTNER_SECRET
115+ valueFrom :
116+ secretKeyRef :
117+ name : abbott
118+ key : PartnerSecret
119+ optional : true
114120 - name : TIDEPOOL_ABBOTT_CLIENT_PARTNER_URL
115121 valueFrom :
116122 configMapKeyRef :
You can’t perform that action at this time.
0 commit comments