summaryrefslogtreecommitdiffstats
path: root/components/aai-graphgraph/templates/service.yaml
diff options
context:
space:
mode:
authorPavel Paroulek <pavel.paroulek@orange.com>2019-05-20 20:14:36 +0200
committerPavel Paroulek <pavel.paroulek@orange.com>2019-08-29 19:25:59 +0200
commit3efe1df6fdba4af4e22849bec220c8daa4a68a49 (patch)
tree39169f2c01ce7a8faf472ceadc07012134b83fb6 /components/aai-graphgraph/templates/service.yaml
parent55cb73cadc59537643c0fe5cb7ededadc9ff2b48 (diff)
Adding Graphgraph k8s config
Issue-ID: AAI-531 Signed-off-by: Pavel Paroulek <pavel.paroulek@orange.com> Change-Id: I2cb6471a0369ef8cc3f36b9988ff0df2045564a0
Diffstat (limited to 'components/aai-graphgraph/templates/service.yaml')
-rw-r--r--components/aai-graphgraph/templates/service.yaml35
1 files changed, 35 insertions, 0 deletions
diff --git a/components/aai-graphgraph/templates/service.yaml b/components/aai-graphgraph/templates/service.yaml
new file mode 100644
index 0000000..e441022
--- /dev/null
+++ b/components/aai-graphgraph/templates/service.yaml
@@ -0,0 +1,35 @@
+# Copyright © 2019 Orange
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+apiVersion: v1
+kind: Service
+metadata:
+ name: {{ include "common.servicename" . }}
+ namespace: {{ include "common.namespace" . }}
+ labels:
+ app: {{ include "common.name" . }}
+ chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
+ release: {{ .Release.Name }}
+ heritage: {{ .Release.Service }}
+spec:
+ type: NodePort
+ ports:
+ - port: {{ .Values.service.internalPort }}
+ nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
+ name: {{ .Values.service.portName }}
+ targetPort: {{ .Values.service.internalPort }}
+ protocol: TCP
+ selector:
+ app: {{ include "common.name" . }}
+ release: {{ .Release.Name }}