add k8s files
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-04-10 16:00:28 +02:00
parent 59f663c1fd
commit 3c521fcba8
3 changed files with 41 additions and 1 deletions

16
k8s/service.yml Normal file
View File

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