blob: 7d588e4de45d97a9ac17dbd560c624baba9b584c [file] [log] [blame]
Sylvain Desbureaux16bdf242020-12-07 10:28:24 +01001# 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
15apiVersion: apps/v1
16kind: Deployment
17metadata:
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 }}
25spec:
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" . }}
Sylvain Desbureaux3179a852020-12-09 08:13:09 +010050 image: "{{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}"
Sylvain Desbureaux16bdf242020-12-07 10:28:24 +010051 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:
81{{ include "common.resources" . }}
82 {{- if .Values.nodeSelector }}
83 nodeSelector:
84{{ toYaml .Values.nodeSelector | indent 8 }}
85 {{- end -}}
86 {{- if .Values.affinity }}
87 affinity:
88{{ toYaml .Values.affinity | indent 8 }}
89 {{- end }}
90 volumes:
91 {{- if .Values.persistence.enabled }}
92 - name: robot-logs
93 persistentVolumeClaim:
94 claimName: {{ include "common.fullname" . }}
95 {{- else }}
96 emptyDir: {}
97 {{- end }}
98 - name: dshm
99 emptyDir:
100 medium: Memory
101 - name: localtime
102 hostPath:
103 path: /etc/localtime
104 - name: robot-eteshare
105 configMap:
106 name: {{ include "common.fullname" . }}-eteshare-configmap
107 defaultMode: 0755
108 - name: robot-lighttpd
109 configMap:
110 name: {{ include "common.fullname" . }}-lighttpd-configmap
111 defaultMode: 0755
112 - name: robot-lighttpd-ssl
113 configMap:
114 name: {{ include "common.fullname" . }}-lighttpd-ssl-configmap
115 defaultMode: 0600
116 imagePullSecrets:
117 - name: "{{ include "common.namespace" . }}-docker-registry-key"