Initial code commit
This commit is contained in:
parent
5b71cecab6
commit
b3382d880b
37 changed files with 1778 additions and 1 deletions
20
templates/moneris-secret.yaml
Normal file
20
templates/moneris-secret.yaml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{{- if .Values.thirdParty.moneris.enabled -}}
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-moneris-secret
|
||||
labels:
|
||||
app: {{ .Release.Name }}
|
||||
type: Opaque
|
||||
data:
|
||||
merchant-id: {{ .Values.thirdParty.moneris.merchantId | b64enc }}
|
||||
store-id: {{ .Values.thirdParty.moneris.storeId | b64enc }}
|
||||
ht-profile-id: {{ .Values.thirdParty.moneris.htProfileId | b64enc }}
|
||||
app-id: {{ .Values.thirdParty.moneris.appId | b64enc }}
|
||||
app-secret: {{ .Values.thirdParty.moneris.appSecret | b64enc }}
|
||||
test-merchant-id: {{ .Values.thirdParty.moneris.testMerchantId | b64enc }}
|
||||
test-store-id: {{ .Values.thirdParty.moneris.testStoreId | b64enc }}
|
||||
test-ht-profile-id: {{ .Values.thirdParty.moneris.testHtProfileId | b64enc }}
|
||||
test-app-id: {{ .Values.thirdParty.moneris.testAppId | b64enc }}
|
||||
test-app-secret: {{ .Values.thirdParty.moneris.testAppSecret | b64enc }}
|
||||
{{- end -}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue