apiVersion: v1 kind: Secret metadata: name: billing-secrets namespace: container-mom type: Opaque data: # To configure this secret: # 1. Sign up for a Stripe account at https://dashboard.stripe.com/register # 2. Get your API key from https://dashboard.stripe.com/apikeys # 3. Base64 encode your API key: echo -n 'your-api-key' | base64 # 4. Replace the value below with your base64 encoded API key stripe-api-key: "" # Leave empty until you have your Stripe API key