Skip to content

Instantly share code, notes, and snippets.

@mark-church
Created November 11, 2021 13:37
Show Gist options
  • Save mark-church/775fe688ad953369d163d271aa6418d1 to your computer and use it in GitHub Desktop.
Save mark-church/775fe688ad953369d163d271aa6418d1 to your computer and use it in GitHub Desktop.
kind: Namespace
apiVersion: v1
metadata:
name: traffic-test
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: store
namespace: traffic-test
spec:
replicas: 2
selector:
matchLabels:
app: store
version: v1
template:
metadata:
labels:
app: store
version: v1
spec:
containers:
- name: whereami
image: gcr.io/google-samples/whereami:v1.2.2
ports:
- containerPort: 8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment