bb4808a0e6cdf959940fc01cc9d50c92f4093539
[it/dep.git] / ric-platform / 50-RIC-Platform / helm / submgr / templates / deployment.yaml
1 #
2 #==================================================================================
3 #   Copyright (c) 2019 AT&T Intellectual Property.
4 #   Copyright (c) 2019 Nokia
5 #
6 #   Licensed under the Apache License, Version 2.0 (the "License");
7 #   you may not use this file except in compliance with the License.
8 #   You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #   Unless required by applicable law or agreed to in writing, software
13 #   distributed under the License is distributed on an "AS IS" BASIS,
14 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #   See the License for the specific language governing permissions and
16 #   limitations under the License.
17 #==================================================================================
18 #
19 #
20 #   Abstract: Subscription Manager Kubernetes manifest
21 #   Date:               28 May 2019
22 #
23 apiVersion: apps/v1
24 kind: Deployment
25 metadata:
26   name: {{ include "common.deploymentname.submgr" . }}
27   namespace: {{ include "common.namespace.platform" . }}
28   labels:
29     app: {{ include "common.namespace.platform" . }}-{{ include "common.name.submgr" . }}
30     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
31     release: {{ .Release.Name }}
32     heritage: {{ .Release.Service }}
33 spec:
34   replicas: {{ .Values.submgr.replicaCount }}
35   selector:
36     matchLabels:
37       app: {{ include "common.namespace.platform" . }}-{{ include "common.name.submgr" . }}
38       release: {{ .Release.Name }}
39   template:
40     metadata:
41       labels:
42         app: {{ include "common.namespace.platform" . }}-{{ include "common.name.submgr" . }}
43         release: {{ .Release.Name }}
44     spec:
45       hostname: {{ include "common.name.submgr" . }}
46       imagePullSecrets:
47         - name: {{ include "common.repositoryCred" . }}
48       containers:
49         - name: {{ include "common.containername.submgr" . }}
50           image: {{ include "common.repository" . }}/{{ .Values.submgr.image.name }}:{{ .Values.submgr.image.tag }}
51           imagePullPolicy: {{ include "common.pullPolicy" . }}
52           command: ["/run_submgr.sh"]
53           envFrom:
54             - configMapRef:
55                 name: {{ include "common.configmapname.submgr" . }}-env
56           ports:
57             - name: http
58               containerPort: {{ include "common.serviceport.submgr.http" . }}
59               protocol: TCP
60             - name: rmrroute
61               containerPort: {{ include "common.serviceport.submgr.rmr.route" . }}
62               protocol: TCP
63             - name: rmrdata
64               containerPort: {{ include "common.serviceport.submgr.rmr.data" . }}
65               protocol: TCP