kubernetes/examples/cluster-dns/dns-frontend-pod.yaml
Abhi Shah c5e1c87ae7 Merge pull request #9516 from caesarxuchao/cluster-dns-AND-downward-api-v1
examples/cluster-dns and examples/downward-api to v1
2015-06-11 11:26:35 -07:00

17 lines
333 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: dns-frontend
labels:
name: dns-frontend
spec:
containers:
- name: dns-frontend
image: ddysher/dns-frontend
command:
- python
- client.py
- http://dns-backend.development.cluster.local:8000
imagePullPolicy: Always
restartPolicy: Never