60316ed188fdc4ba6b57dd52eebc58d9b518f1dd
[oom.git] / kubernetes / robot / templates / deployment.yaml
1 # Copyright © 2018 Amdocs, Bell Canada, AT&T
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
15 apiVersion: apps/v1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ include "common.release" . }}
24     heritage: {{ .Release.Service }}
25 spec:
26   selector:
27     matchLabels:
28       app: {{ include "common.name" . }}
29   replicas: {{ .Values.replicaCount }}
30   template:
31     metadata:
32       labels:
33         app: {{ include "common.name" . }}
34         release: {{ include "common.release" . }}
35     spec:
36       hostAliases:
37       - ip: {{ .Values.kubernetesExternalIp }}
38         hostnames:
39         - "portal.api.simpledemo.onap.org"
40         - "vid.api.simpledemo.onap.org"
41         - "sdc.api.fe.simpledemo.onap.org"
42         - "portal-sdk.simpledemo.onap.org"
43         - "policy.api.simpledemo.onap.org"
44         - "aai.api.sparky.simpledemo.onap.org"
45         - "aai.ui.simpledemo.onap.org"
46         - "cli.api.simpledemo.onap.org"
47         - "so-monitoring"
48       containers:
49       - name: {{ include "common.name" . }}
50         image: "{{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}"
51         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52         ports:
53         - containerPort: {{ .Values.service.internalPort }}
54         {{ if .Values.liveness.enabled }}
55         livenessProbe:
56           tcpSocket:
57             port: {{ .Values.service.internalPort }}
58           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
59           periodSeconds: {{ .Values.liveness.periodSeconds }}
60         {{ end }}
61         readinessProbe:
62           tcpSocket:
63             port: {{ .Values.service.internalPort }}
64           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
65           periodSeconds: {{ .Values.readiness.periodSeconds }}
66         volumeMounts:
67         - name: dshm
68           mountPath: /dev/shm
69         - name: localtime
70           mountPath: /etc/localtime
71           readOnly: true
72         - name: robot-eteshare
73           mountPath: /share/config
74         - name: robot-lighttpd
75           mountPath: /etc/lighttpd
76         - name: robot-lighttpd-ssl
77           mountPath: /etc/lighttpd/ssl
78         - name: robot-logs
79           mountPath: /share/logs
80         resources: {{ include "common.resources" . | nindent 10 }}
81       {{- if .Values.nodeSelector }}
82       nodeSelector:
83 {{ toYaml .Values.nodeSelector | indent 8 }}
84       {{- end -}}
85       {{- if .Values.affinity }}
86       affinity:
87 {{ toYaml .Values.affinity | indent 8 }}
88       {{- end }}
89       volumes:
90     {{- if .Values.persistence.enabled }}
91       - name: robot-logs
92         persistentVolumeClaim:
93           claimName: {{ include "common.fullname" . }}
94     {{- else }}
95         emptyDir: {}
96     {{- end }}
97       - name: dshm
98         emptyDir:
99           medium: Memory
100       - name: localtime
101         hostPath:
102           path: /etc/localtime
103       - name: robot-eteshare
104         configMap:
105           name: {{ include "common.fullname" . }}-eteshare-configmap
106           defaultMode: 0755
107       - name: robot-lighttpd
108         configMap:
109           name: {{ include "common.fullname" . }}-lighttpd-configmap
110           defaultMode: 0755
111       - name: robot-lighttpd-ssl
112         configMap:
113           name: {{ include "common.fullname" . }}-lighttpd-ssl-configmap
114           defaultMode: 0600
115       {{- include "common.imagePullSecrets" . | nindent 6 }}