blob: 19ccbc0cdcfece369d0b4676d3ce91d3fd21cf45 [file] [log] [blame]
GuangrongFucc1316b2021-02-03 17:29:08 +08001{{/*
2#============LICENSE_START========================================================
3# ================================================================================
4# Copyright (c) 2021 ZTE Intellectual Property. All rights reserved.
5# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=========================================================
18*/}}
19
20apiVersion: apps/v1
21kind: Deployment
22metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
23spec:
24 replicas: 1
25 selector: {{- include "common.selectors" . | nindent 4 }}
26 template:
27 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
28 spec:
29 initContainers: {{- include "common.certInitializer.initContainer" . | nindent 6 }}
30 - name: init-consul
31 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.consulLoaderImage }}
32 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Sylvain Desbureauxc6448eb2021-12-06 15:33:44 +010033 env:
34 - name: CONSUL_HOST
35 value: {{ .Values.consulHost | default "consul-server-ui" }}.{{ include "common.namespace" . }}
GuangrongFucc1316b2021-02-03 17:29:08 +080036 args:
37 - --key
38 - holmes-rule-mgmt|/hrmconfigs/cfy.json
39 resources: {}
40 volumeMounts:
41 - mountPath: /hrmconfigs
42 name: {{ include "common.fullname" . }}-config
43 - name: {{ include "common.name" . }}-env-config
44 image: {{ include "repositoryGenerator.image.envsubst" . }}
45 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
46 command:
47 - sh
48 args:
49 - -c
50 - "cd /hrmconfig && for PFILE in `find . -type f -not -name '*.json'`; do envsubst < ${PFILE} > /config/${PFILE##*/}; done"
51 env:
52 - name: JDBC_USERNAME
53 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "login") | indent 10 }}
54 - name: JDBC_PASSWORD
55 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 10 }}
56 - name: DB_NAME
57 value: {{ .Values.config.pgConfig.dbName }}
58 - name: URL_JDBC
59 value: {{ .Values.config.pgConfig.dbHost }}
60 - name: DB_PORT
61 value: "{{ .Values.config.pgConfig.dbPort }}"
62 volumeMounts:
63 - mountPath: /hrmconfig
64 name: {{ include "common.fullname" . }}-config
65 - mountPath: /config
66 name: {{ include "common.fullname" . }}-env-config
67 containers:
68 - name: {{ include "common.name" . }}
69 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
70 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
71 ports: {{ include "common.containerPorts" . | nindent 8 }}
72 volumeMounts: {{- include "common.certInitializer.volumeMount" . | nindent 8 }}
73 - name: {{ include "common.fullname" . }}-env-config
74 mountPath: /opt/hrmconfig
75 # disable liveness probe when breakpoints set in debugger
76 # so K8s doesn't restart unresponsive container
77 {{- if eq .Values.liveness.enabled true }}
78 livenessProbe:
79 httpGet:
80 path: {{ .Values.liveness.path }}
81 port: {{ .Values.liveness.port }}
82 scheme: {{ .Values.liveness.scheme }}
83 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
84 periodSeconds: {{ .Values.liveness.periodSeconds }}
85 {{- end }}
86 readinessProbe:
87 httpGet:
88 path: {{ .Values.readiness.path }}
89 port: {{ .Values.readiness.port }}
90 scheme: {{ .Values.readiness.scheme }}
91 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
92 periodSeconds: {{ .Values.readiness.periodSeconds }}
93 failureThreshold: 1
94 successThreshold: 1
95 timeoutSeconds: 1
96 env:
97 - name: CONSUL_HOST
98 value: consul-server.{{ include "common.namespace" . }}
99 - name: CONFIG_BINDING_SERVICE
100 value: config-binding-service
101 - name: msb_hostname
102 value: "msb-iag.onap"
103 - name: POD_IP
104 valueFrom:
105 fieldRef:
106 apiVersion: v1
107 fieldPath: status.podIP
108 - name: PGPASSWORD
109 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 10 }}
110 - name: JDBC_USERNAME
111 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "login") | indent 10 }}
112 - name: JDBC_PASSWORD
113 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 10 }}
114 - name: DB_NAME
115 value: {{ .Values.config.pgConfig.dbName }}
116 - name: URL_JDBC
117 value: {{ .Values.config.pgConfig.dbHost }}
118 - name: DB_PORT
119 value: "{{ .Values.config.pgConfig.dbPort }}"
farida azmy1e05f292021-10-03 13:22:55 +0200120 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
GuangrongFucc1316b2021-02-03 17:29:08 +0800121 volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
122 - name: {{ include "common.fullname" . }}-config
123 configMap:
124 defaultMode: 422
125 name: {{ include "common.fullname" . }}
126 - name: {{ include "common.fullname" . }}-env-config
127 emptyDir:
128 medium: Memory
129 imagePullSecrets:
130 - name: "{{ include "common.namespace" . }}-docker-registry-key"