From cf0015d1e2f93cbd059fc6651af0bf03c58cf31a Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Tue, 16 Jun 2020 20:34:09 +0100 Subject: [PATCH] Added service for rpc --- manifests/inlets.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/manifests/inlets.yaml b/manifests/inlets.yaml index 068c78e..a3c4ab3 100644 --- a/manifests/inlets.yaml +++ b/manifests/inlets.yaml @@ -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 +---