commit | 1c2e2d334d07adcb2baa67c1d40656d5310b4760 | [log] [tgz] |
---|---|---|
author | Scott Baker <smbaker@gmail.com> | Tue Oct 30 15:41:16 2018 -0700 |
committer | Scott Baker <smbaker@gmail.com> | Thu Nov 01 13:30:59 2018 -0700 |
tree | b82f8336e8507ada109ae3ac83fbbd3d46f88823 | |
parent | 374d309b5b195458bb41cdd72c44b4918b104b3d [diff] |
SEBA-329 expose gRPC port Change-Id: Ie70f108d7e9d169d7c84c31c874765178d7c4a41
diff --git a/xos-core/templates/core-service.yaml b/xos-core/templates/core-grpc-service.yaml similarity index 87% rename from xos-core/templates/core-service.yaml rename to xos-core/templates/core-grpc-service.yaml index 4e3a3b9..3d7e8dc 100644 --- a/xos-core/templates/core-service.yaml +++ b/xos-core/templates/core-grpc-service.yaml
@@ -20,15 +20,18 @@ labels: {{- include "xos-core.release_labels" . | indent 4 }} spec: - type: ClusterIP + type: NodePort selector: app: "xos-core" ports: - port: 50051 - name: secure targetPort: 50051 + name: secure + nodePort: {{ .Values.xos_core_gRPCSecureNodePort }} protocol: TCP - port: 50055 - name: insecure targetPort: 50055 + name: insecure + nodePort: {{ .Values.xos_core_gRPCInsecureNodePort }} protocol: TCP +
diff --git a/xos-core/templates/core-service-nodeport.yaml b/xos-core/templates/core-prometheus-service.yaml similarity index 100% rename from xos-core/templates/core-service-nodeport.yaml rename to xos-core/templates/core-prometheus-service.yaml