input-service/k8s/deployment.yaml
Pünkösd Marcell 89639a1c4e
All checks were successful
continuous-integration/drone/push Build is passing
fixed stuff
2020-04-12 23:24:26 +02:00

30 lines
580 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: input-service
namespace: birbnetes
labels:
app: input-service
spec:
replicas: 1
selector:
matchLabels:
app: input-service
strategy:
type: Recreate
template:
metadata:
labels:
app: input-service
spec:
containers:
- name: input-service
image: registry.kmlabz.com/tormakris/input-service
envFrom:
- configMapRef:
name: input-service
ports:
- containerPort: 8080
imagePullSecrets:
- name: regcred