Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 630 Bytes

cymbal-shops.md

File metadata and controls

25 lines (22 loc) · 630 Bytes

Cymbal Shops Branding

By default, when you deploy this sample app, the "Online Boutique" branding (logo and wording) will be used. But you may want to use Google Cloud's fictitious company, Cymbal Shops, instead.

To use "Cymbal Shops" branding, set the CYMBAL_BRANDING environment variable to "true" in the the Kubernetes manifest (.yaml) for the frontend Deployment.

apiVersion: apps/v1
kind: Deployment
metadata:
  name: frontend
spec:
  ...
  template:
    ...
    spec:
      ...
      containers:
          ...
          env:
            ...
          - name: CYMBAL_BRANDING
            value: "true"