services.bridgemanaccessibl.../templates/moneris-secret.yaml
2025-05-12 19:22:55 -05:00

20 lines
892 B
YAML

{{- 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 -}}