beer/kube/beer-deployment.yaml
kleph 65eb050362
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
[CI] Add stating environment
2020-03-01 02:26:42 +01:00

24 lines
447 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: beer-deployment-__LEVEL__
namespace: __NAMESPACE__
spec:
selector:
matchLabels:
app: beer
level: __LEVEL__
replicas: 1
template:
metadata:
labels:
app: beer
level: __LEVEL__
spec:
containers:
- name: beer
image: kleph/beer:__IMAGE_TAG__
imagePullPolicy: Always
ports:
- containerPort: 5000