project structure done

This commit is contained in:
2020-07-18 12:34:52 +02:00
parent 5b54d365dc
commit 940792c9b7
15 changed files with 424 additions and 0 deletions

27
k8s/deployment.yaml Normal file
View File

@@ -0,0 +1,27 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: guard-service
namespace: birbnetes
labels:
app: guard-service
spec:
replicas: 1
selector:
matchLabels:
app: guard-service
strategy:
type: Recreate
template:
metadata:
labels:
app: guard-service
spec:
containers:
- name: guard-service
image: registry.kmlabz.com/birbnetesgit/guard-service
envFrom:
- configMapRef:
name: guard-service
imagePullSecrets:
- name: regcred