initial commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-05-20 22:25:28 +02:00
commit 9fd976a298
26 changed files with 1050 additions and 0 deletions

16
k8s/service.yml Normal file
View File

@@ -0,0 +1,16 @@
apiVersion: v1
kind: Service
metadata:
name: input-service
namespace: birbnetes
labels:
app: input-service
spec:
ports:
- name: input-service
port: 80
targetPort: 8080
protocol: TCP
selector:
app: input-service
type: ClusterIP