From 14d6eae467e8769f001d7d46694f87bdce9c44f1 Mon Sep 17 00:00:00 2001 From: Mike Elliott Date: Sun, 15 Apr 2018 10:39:41 -0400 Subject: Add service name standard template Updated helm starter to make use of a standard service name tpl. Change-Id: Ia387c2944da6d46238aa041db8542368b5c8d6a1 Issue-ID: OOM-906 Signed-off-by: Mike Elliott --- kubernetes/helm/starters/onap-app/values.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'kubernetes/helm/starters/onap-app/values.yaml') diff --git a/kubernetes/helm/starters/onap-app/values.yaml b/kubernetes/helm/starters/onap-app/values.yaml index 2e0d7b7762..ada99edee8 100644 --- a/kubernetes/helm/starters/onap-app/values.yaml +++ b/kubernetes/helm/starters/onap-app/values.yaml @@ -60,15 +60,21 @@ readiness: initialDelaySeconds: 10 periodSeconds: 10 +#Example service definition with external, internal and node ports. service: - #Example service definition with external, internal and node ports. + # The default service name (exposed in the service.yaml) will be the same + # name as the chart. If the service name needs to be overriden (such as + # when a subchart is shared), uncomment the value below. + #name: + #Services may use any combination of ports depending on the 'type' of #service being defined. type: NodePort - name: externalPort: <8080> internalPort: <80> nodePort: + # optional port name override - default can be defined in service.yaml + #portName: http ingress: enabled: false -- cgit 1.2.3-korg