Added service for rpc

This commit is contained in:
Marcus Noble 2020-06-16 20:34:09 +01:00
parent 6ce5744672
commit cf0015d1e2
1 changed files with 17 additions and 0 deletions

View File

@ -126,3 +126,20 @@ spec:
backend:
serviceName: inlets
servicePort: 80
---
apiVersion: v1
kind: Service
metadata:
name: downloads-rpc
namespace: inlets
labels:
app: inlets
spec:
type: ClusterIP
ports:
- port: 80
protocol: TCP
targetPort: 8000
selector:
app: inlets
---