Merge "[AAI] Add model-loader tracing config"
[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: robot-eteshare
70           mountPath: /share/config
71         - name: robot-lighttpd
72           mountPath: /etc/lighttpd
73         - name: robot-lighttpd-ssl
74           mountPath: /etc/lighttpd/ssl
75         - name: robot-logs
76           mountPath: /share/logs
77         resources: {{ include "common.resources" . | nindent 10 }}
78       {{- if .Values.nodeSelector }}
79       nodeSelector:
80 {{ toYaml .Values.nodeSelector | indent 8 }}
81       {{- end -}}
82       {{- if .Values.affinity }}
83       affinity:
84 {{ toYaml .Values.affinity | indent 8 }}
85       {{- end }}
86       volumes:
87     {{- if .Values.persistence.enabled }}
88       - name: robot-logs
89         persistentVolumeClaim:
90           claimName: {{ include "common.fullname" . }}
91     {{- else }}
92         emptyDir: {}
93     {{- end }}
94       - name: dshm
95         emptyDir:
96           medium: Memory
97       - name: robot-eteshare
98         configMap:
99           name: {{ include "common.fullname" . }}-eteshare-configmap
100           defaultMode: 0755
101       - name: robot-lighttpd
102         configMap:
103           name: {{ include "common.fullname" . }}-lighttpd-configmap
104           defaultMode: 0755
105       - name: robot-lighttpd-ssl
106         configMap:
107           name: {{ include "common.fullname" . }}-lighttpd-ssl-configmap
108           defaultMode: 0600
109       {{- include "common.imagePullSecrets" . | nindent 6 }}