Files
weave-scope/experimental/example/k8s/echo-deployment.yaml
Tom Wilkie 2978794747 Make the example work on kubernetes (#1463)
* Make the example work on kubernetes

* Example app: Launch weave if not running.
2016-05-10 20:25:36 +02:00

18 lines
308 B
YAML

apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: echo
spec:
replicas: 1
template:
metadata:
labels:
name: echo
spec:
containers:
- name: echo
image: tomwilkie/echo
imagePullPolicy: IfNotPresent
ports:
- containerPort: 80