Add FCAPS to oom
[oom.git] / kubernetes / cds / charts / cds-ui / templates / deployment.yaml
1 # Copyright © 2018 Orange
2 # Modifications Copyright © 2018  Amdocs, Bell Canada
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 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ .Release.Name }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ .Release.Name }}
33         name: {{ include "common.fullname" . }}
34     spec:
35       containers:
36         - name: {{ include "common.name" . }}
37           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
38           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
39           ports:
40             - containerPort: {{ .Values.service.internalPort }}
41           # disable liveness probe when breakpoints set in debugger
42           # so K8s doesn't restart unresponsive container
43           {{ if .Values.liveness.enabled }}
44           livenessProbe:
45             tcpSocket:
46               port: {{ .Values.service.internalPort }}
47             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
48             periodSeconds: {{ .Values.liveness.periodSeconds }}
49           {{ end }}
50           env:
51             - name: HOST
52               value: 0.0.0.0
53             - name: API_BLUEPRINT_CONTROLLER_BASE_URL
54               value: {{ .Values.config.api.controller.baseUrl }}
55             - name: API_BLUEPRINT_CONTROLLER_AUTH_TOKEN
56               value: {{ .Values.config.api.controller.authToken }}
57             - name: API_BLUEPRINT_PROCESSOR_BASE_URL
58               value: {{ .Values.config.api.processor.baseUrl }}
59             - name: API_BLUEPRINT_PROCESSOR_AUTH_TOKEN
60               value: {{ .Values.config.api.processor.authToken }}
61           readinessProbe:
62             tcpSocket:
63               port: {{ .Values.service.internalPort }}
64             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
65             periodSeconds: {{ .Values.readiness.periodSeconds }}
66           volumeMounts:
67             - mountPath: /etc/localtime
68               name: localtime
69               readOnly: true
70           resources:
71 {{ include "common.resources" . | indent 12 }}
72         {{- if .Values.nodeSelector }}
73         nodeSelector:
74 {{ toYaml .Values.nodeSelector | indent 10 }}
75         {{- end -}}
76         {{- if .Values.affinity }}
77         affinity:
78 {{ toYaml .Values.affinity | indent 10 }}
79         {{- end }}
80       # side car containers
81         # - name: filebeat-onap
82         #   image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
83         #   imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
84         #   volumeMounts:
85         #   - mountPath: /usr/share/filebeat/filebeat.yml
86         #     name: filebeat-conf
87         #     subPath: filebeat.yml
88         #   - mountPath: /home/esr/works/logs
89         #     name: esr-server-logs
90         #   - mountPath: /usr/share/filebeat/data
91         #     name: esr-server-filebeat
92       volumes:
93         - name: localtime
94           hostPath:
95             path: /etc/localtime
96         # - name: filebeat-conf
97         #   configMap:
98         #     name: {{ include "common.fullname" . }}-esr-filebeat
99         # - name: esr-server-logs
100         #   emptyDir: {}
101         # - name: esr-server-filebeat
102         #   emptyDir: {}
103         # - name: esrserver-log
104         #   configMap:
105         #     name: {{ include "common.fullname" . }}-esr-esrserver-log
106       imagePullSecrets:
107       - name: "{{ include "common.namespace" . }}-docker-registry-key"