Add Kubernetes configuration

This commit is contained in:
Benjamin Waldher
2023-04-09 20:19:26 +00:00
parent beea3023db
commit 5489da4490
10 changed files with 403 additions and 0 deletions

27
kubernetes/service.yaml Normal file
View File

@ -0,0 +1,27 @@
apiVersion: v1
kind: Service
metadata:
name: restserver
spec:
selector:
app: restserver
ports:
- name: http
protocol: TCP
port: 7880
targetPort: 7880
type: ClusterIP
---
apiVersion: v1
kind: Service
metadata:
name: joex
spec:
selector:
app: joex
ports:
- name: http
protocol: TCP
port: 7878
targetPort: 7878
type: ClusterIP