Add FCAPS to oom
[oom.git] / kubernetes / oof / charts / oof-cmso / charts / oof-cmso-optimizer / templates / deployment.yaml
1 # Copyright © 2018 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: extensions/v1beta1
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: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       initContainers:
34       - command:
35         - /root/ready.py
36         args:
37         - --container-name
38         - {{ .Values.mariadb.nameOverride }}
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47         name: {{ include "common.name" . }}-readiness
48       - name: db-init
49         image: "{{ include "common.repository" . }}/{{ .Values.dbinit.image }}"
50         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51         env:
52         - name: DB_HOST
53           value: {{ .Values.config.db_host }}.{{.Release.Namespace}}
54         - name: DB_PORT
55           value: {{ .Values.config.db_port | quote}}
56         - name: DB_USERNAME
57           value: {{ .Values.config.db_root }}
58         - name: DB_SCHEMA
59           value: {{ .Values.config.mysqlDatabase }}
60         - name: DB_PASSWORD
61           valueFrom:
62             secretKeyRef:
63               name: {{ .Release.Name}}-cmso-db
64               key: db-root-password
65         terminationMessagePolicy: File
66         volumeMounts:
67         - name: {{ include "common.fullname" . }}-config
68           mountPath: /share/etc/config
69         - name: {{ include "common.fullname" . }}-logs   
70           mountPath: /share/logs
71       containers:
72       - name: {{ include "common.name" . }}
73         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
74         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
75         env:
76         - name: TOPOLOGY_HOST
77           value: {{ .Values.config.topology_host }}.{{.Release.Namespace}}
78         - name: TOPOLOGY_PORT
79           value: {{ .Values.config.topology_port | quote}}
80         - name: TICKETMGT_HOST
81           value: {{ .Values.config.ticketmgt_host }}.{{.Release.Namespace}}
82         - name: TICKETMGT_PORT
83           value: {{ .Values.config.ticketmgt_port | quote}}
84         - name: DB_HOST
85           value: {{ .Values.config.db_host }}.{{.Release.Namespace}}
86         - name: DB_PORT
87           value: {{ .Values.config.db_port | quote}}
88         - name: DB_USERNAME
89           value: {{ .Values.config.db_root }}
90         - name: DB_SCHEMA
91           value: {{ .Values.config.mysqlDatabase }}
92         - name: DB_PASSWORD
93           valueFrom:
94             secretKeyRef:
95               name: {{ .Release.Name}}-cmso-db
96               key: db-root-password
97         ports:
98         - containerPort: {{ .Values.service.internalPort }}
99         # disable liveness probe when breakpoints set in debugger
100         # so K8s doesn't restart unresponsive container
101         {{- if eq .Values.liveness.enabled true }}
102         livenessProbe:
103           tcpSocket:
104             port: {{ .Values.service.internalPort }}
105           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
106           periodSeconds: {{ .Values.liveness.periodSeconds }}
107         {{ end -}}
108         readinessProbe:
109           tcpSocket:
110             port: {{ .Values.service.internalPort }}
111           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
112           periodSeconds: {{ .Values.readiness.periodSeconds }}
113         volumeMounts:
114         - name: {{ include "common.fullname" . }}-logs
115           mountPath: /share/logs
116         - name: {{ include "common.fullname" . }}-logs
117           mountPath: /share/debug-logs
118         - name: {{ include "common.fullname" . }}-config
119           mountPath: /share/etc/config 
120         resources:
121 {{ include "common.resources" . | indent 12 }}
122         {{- if .Values.nodeSelector }}
123         nodeSelector:
124 {{ toYaml .Values.nodeSelector | indent 10 }}
125         {{- end -}}
126         {{- if .Values.affinity }}
127         affinity:
128 {{ toYaml .Values.affinity | indent 10 }}
129         {{- end }}
130       volumes:
131         - name: {{ include "common.fullname" . }}-config
132           configMap:
133             name: {{ include "common.fullname" . }}
134             items:
135             - key: logback.xml
136               path: logback.xml
137             - key: cadi.properties
138               path: cadi.properties
139             - key: optimizer.properties
140               path: optimizer.properties
141             - key: liquibase.properties
142               path: liquibase.properties
143         - name:  {{ include "common.fullname" . }}-logs
144           emptyDir: {}
145       imagePullSecrets:
146       - name: "{{ include "common.namespace" . }}-docker-registry-key"