From b5c9a81fbd988767cd34abfefb6c39712759d4f0 Mon Sep 17 00:00:00 2001 From: James Polley Date: Sat, 29 Sep 2018 04:19:01 +0000 Subject: [PATCH] Enable Stripe test keys in dev namespace --- k8s/deployment_template.jsonnet | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/k8s/deployment_template.jsonnet b/k8s/deployment_template.jsonnet index de3271d9..d3dc5d6c 100644 --- a/k8s/deployment_template.jsonnet +++ b/k8s/deployment_template.jsonnet @@ -96,11 +96,21 @@ function (slug, sha) { }, { "name": "STRIPE_PUBLIC_KEY", - "value": "5CEA51A5-A613-4AEF-A9FB-D0A57D77C13B" + "valueFrom": { + "secretKeyRef": { + "key": "STRIPE_PUBLIC_KEY", + "name": "symposion-app-config" + } + } }, { "name": "STRIPE_SECRET_KEY", - "value": "5CEA51A5-A613-4AEF-A9FB-D0A57D77C13B" + "valueFrom": { + "secretKeyRef": { + "key": "STRIPE_SECRET_KEY", + "name": "symposion-app-config" + } + } }, { "name": "SYMPOSION_DEV_MODE",