Files
weave-scope/extras/example/k8s/qotd-deployment.yaml
2019-09-21 16:00:58 +00:00

21 lines
345 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: qotd
spec:
replicas: 1
selector:
matchLabels:
name: qotd
template:
metadata:
labels:
name: qotd
spec:
containers:
- name: qotd
image: tomwilkie/qotd
imagePullPolicy: IfNotPresent
ports:
- containerPort: 4446