Torma Kristóf
03bf58bab3
All checks were successful
continuous-integration/drone/push Build is passing
30 lines
593 B
YAML
30 lines
593 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:
|
|
- image:
|
|
name: registry.kmlabz.com/tormakris/input-service
|
|
env:
|
|
- name: SENTRY_DSN
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: sentry-dsn
|
|
key: input-service
|
|
ports:
|
|
- containerPort: 8080 |