Demo Namespaces
Namespace manifests for Ark demo environments. Each file creates a Kubernetes namespace with labels and annotations used by the Ark landing page for demo discovery.
How It Works
The Ark landing page lists all namespaces with the label ark.mckinsey.com/demo: "true" and displays the name/description from annotations.
Usage
kubectl apply -f demos/namespaces/cobol-demo.yaml
kubectl apply -f demos/namespaces/kyc-demo.yamlAdding a New Demo Namespace
apiVersion: v1
kind: Namespace
metadata:
name: my-demo
labels:
ark.mckinsey.com/demo: "true"
annotations:
ark.mckinsey.com/demo-name: "My Demo"
ark.mckinsey.com/demo-description: "Short description of the demo"Last updated on