beer/kube/beer-deployment.yaml
kleph 22378cf133
All checks were successful
continuous-integration/drone/push Build is passing
[CI] Tag docker image to deploy it
2020-02-25 01:52:44 +01:00

22 lines
379 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: beer-deployment
namespace: beer
spec:
selector:
matchLabels:
app: beer
replicas: 1
template:
metadata:
labels:
app: beer
spec:
containers:
- name: beer
image: kleph/beer:${IMAGE_TAG}
imagePullPolicy: Always
ports:
- containerPort: 5000