input-service/k8s/deployment.yaml
Torma Kristóf 503ffe7f9a
All checks were successful
continuous-integration/drone/push Build is passing
update k8s deployment
2020-04-29 22:34:21 +02:00

30 lines
583 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/birbnetesgit/input-service
envFrom:
- configMapRef:
name: input-service
ports:
- containerPort: 8080
imagePullSecrets:
- name: regcred