blob: 71882b1c6e110aa6c891933319490210757b6235 [file] [log] [blame]
Instrumentalcc3a0bd2019-05-01 14:18:49 -05001# Copyright © 2017 Amdocs, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15apiVersion: v1
16kind: Service
17metadata:
18 name: {{ include "common.servicename" . }}
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
25# annotations:
26# service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
27spec:
28 type: {{ .Values.service.type }}
29 ports:
30 - name: storage
31 protocol: TCP
32 port: {{.Values.global.aaf.cass.storage_port}}
33 containerPort: {{.Values.global.aaf.cass.storage_port}}
34 - name: ssl-storage
35 protocol: TCP
36 port: {{.Values.global.aaf.cass.ssl_storage_port}}
37 containerPort: {{.Values.global.aaf.cass.ssl_storage_port}}
38 - name: native-trans
39 protocol: TCP
40 port: {{.Values.global.aaf.cass.native_trans_port}}
41 containerPort: {{.Values.global.aaf.cass.native_trans_port}}
42 - name: rpc
43 protocol: TCP
44 port: {{.Values.global.aaf.cass.rpc_port}}
45 containerPort: {{.Values.global.aaf.cass.rpc_port}}
46 selector:
47 app: {{ include "common.name" . }}
48 release: {{ .Release.Name }}
49 clusterIP: None