Add rsm and dbaas1 charts
[it/dep.git] / ric-platform / 50-RIC-Platform / helm / rsm / templates / deployment.yaml
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
3 #                                                                              #
4 #   Licensed under the Apache License, Version 2.0 (the "License");            #
5 #   you may not use this file except in compliance with the License.           #
6 #   You may obtain a copy of the License at                                    #
7 #                                                                              #
8 #       http://www.apache.org/licenses/LICENSE-2.0                             #
9 #                                                                              #
10 #   Unless required by applicable law or agreed to in writing, software        #
11 #   distributed under the License is distributed on an "AS IS" BASIS,          #
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
13 #   See the License for the specific language governing permissions and        #
14 #   limitations under the License.                                             #
15 ################################################################################
16
17 apiVersion: apps/v1
18 kind: Deployment
19 metadata:
20   name: {{ include "common.deploymentname.rsm" .}}
21   namespace: {{ include "common.namespace.platform" . }}
22   labels:
23     app: {{ include "common.namespace.platform" . }}-{{ include "common.name.rsm" . }}
24     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25     release: {{ .Release.Name }}
26     heritage: {{ .Release.Service }}
27 spec:
28   replicas: {{ .Values.rsm.replicaCount }}
29   selector:
30     matchLabels:
31       app: {{ include "common.namespace.platform" . }}-{{ include "common.name.rsm" . }}
32       release: {{ .Release.Name }}
33   template:
34     metadata:
35       {{- if .Values.rsm.annotations }}
36       annotations:
37         {{- .Values.rsm.annotations | nindent 8 -}}
38       {{ end }}
39       labels:
40         app: {{ include "common.namespace.platform" . }}-{{ include "common.name.rsm" . }}
41         release: {{ .Release.Name }}
42     spec:
43       hostname: {{ include "common.name.rsm" . }} 
44       imagePullSecrets:
45         - name: {{ include "common.repositoryCred" . }}
46       containers:
47         - name: {{ include "common.containername.rsm" . }}
48           image: {{ include "common.repository" . }}/{{ .Values.rsm.image.name }}:{{ .Values.rsm.image.tag }}
49           imagePullPolicy: {{ include "common.pullPolicy" . }}
50           volumeMounts:
51           - mountPath: /opt/RSM/router.txt
52             name: local-router-file
53             subPath: router.txt
54           - mountPath: /opt/RSM/resources/configuration.yaml
55             name: local-configuration-file
56             subPath: configuration.yaml
57           envFrom:
58             - configMapRef:
59                 name: {{ include "common.configmapname.rsm" . }}-env
60           ports:
61             - name: "http"
62               containerPort: {{ include "common.serviceport.rsm.http" . }}
63             - name: "rmrroute"
64               containerPort: {{ include "common.serviceport.rsm.rmr.route" . }}
65             - name: "rmrdata"
66               containerPort: {{ include "common.serviceport.rsm.rmr.data" . }}
67           stdin: true
68           tty: true
69           securityContext:
70             privileged: {{ .Values.rsm.privilegedmode}}
71       volumes:
72         - name: local-router-file
73           configMap:
74             name: {{ include "common.configmapname.rsm" . }}-router-configmap
75         - name: local-configuration-file
76           configMap:
77             name: {{ include "common.configmapname.rsm" . }}