Initial code commit
This commit is contained in:
parent
5b71cecab6
commit
b3382d880b
37 changed files with 1778 additions and 1 deletions
14
templates/stripe-secret.yaml
Normal file
14
templates/stripe-secret.yaml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{{- if .Values.thirdParty.stripe.enabled -}}
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-stripe-secret
|
||||
labels:
|
||||
app: {{ .Release.Name }}
|
||||
type: Opaque
|
||||
data:
|
||||
public-key: {{ .Values.thirdParty.stripe.publicKey | b64enc }}
|
||||
secret-key: {{ .Values.thirdParty.stripe.secretKey | b64enc }}
|
||||
test-public-key: {{ .Values.thirdParty.stripe.testPublicKey | b64enc }}
|
||||
test-secret-key: {{ .Values.thirdParty.stripe.testSecretKey | b64enc }}
|
||||
{{- end -}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue