input-service/k8s/deployment.yaml
Pünkösd Marcell d3a8057820
All checks were successful
continuous-integration/drone/push Build is passing
ALWAYS
2020-08-06 14:56:40 +02:00

31 lines
615 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
imagePullPolicy: Always
envFrom:
- configMapRef:
name: input-service
ports:
- containerPort: 8080
imagePullSecrets:
- name: regcred