first commit
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-08-11 14:40:05 +02:00
commit 26acf2085c
27 changed files with 926 additions and 0 deletions

30
k8s/deployment.yml Normal file
View File

@@ -0,0 +1,30 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: output-service-rdb
namespace: birbnetes
labels:
app: output-service-rdb
spec:
replicas: 1
selector:
matchLabels:
app: output-service-rdb
strategy:
type: Recreate
template:
metadata:
labels:
app: output-service-rdb
spec:
containers:
- image: registry.kmlabz.com/birbnetes/output-service-rdb
imagePullPolicy: Always
name: output-service-rdb
envFrom:
- configMapRef:
name: output-service-rdb-config
ports:
- containerPort: 8080
imagePullSecrets:
- name: regcred