1 #============LICENSE_START========================================================
2 # ================================================================================
3 # Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
4 # ================================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 # ============LICENSE_END=========================================================
21 name: {{ include "common.fullname" . }}
22 namespace: {{ include "common.namespace" . }}
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26 release: {{ include "common.release" . }}
27 heritage: {{ .Release.Service }}
32 app: {{ include "common.name" . }}
36 app: {{ include "common.name" . }}
37 release: {{ include "common.release" . }}
44 - "cd /config-input && for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config/${PFILE}; done"
47 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "login") | indent 12 }}
49 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 12 }}
51 - mountPath: /config-input
52 name: {{ include "common.fullname" . }}-inv-config-input
54 name: {{ include "common.fullname" . }}-inv-config
55 image: "{{ .Values.global.envsubstImage }}"
56 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
57 name: {{ include "common.name" . }}-update-config
59 - name: {{ include "common.name" . }}-readiness
60 image: {{ include "common.repository" . }}/{{ .Values.global.readinessImage }}
61 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
66 - {{ .Values.postgres.nameOverride }}
76 fieldPath: metadata.namespace
79 - name: aaf_locator_fqdn
85 fieldPath: status.podIP
86 image: {{ .Values.global.tlsRepository }}/{{ .Values.global.tlsImage }}
87 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
90 - mountPath: /opt/app/osaaf
93 - name: {{ include "common.name" . }}
94 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
95 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
96 # Assumes that the Docker image is built with ENTRYPOINT set to
97 # ["java", "-jar", "/opt/inventory-api-x.y.z.jar", "server"]
98 # where "x.y.z" is the version number (matches the Docker image version number)
99 # The arg below adds a parameter, the path to a config file.
100 # This tells the inventory-api app to get its configuration from the file
101 # rather than querying Consul.
105 {{ include "common.resources" . | indent 12 }}
107 - containerPort: {{ .Values.service.internalPort }}
108 # disable liveness probe when breakpoints set in debugger
109 # so K8s doesn't restart unresponsive container
110 {{- if eq .Values.liveness.enabled true }}
113 port: {{ .Values.service.internalPort }}
114 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
115 periodSeconds: {{ .Values.liveness.periodSeconds }}
119 path: {{ .Values.readiness.path }}
120 port: {{ .Values.service.internalPort }}
121 scheme: {{ .Values.readiness.scheme }}
122 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
123 periodSeconds: {{ .Values.readiness.periodSeconds }}
125 - name: {{ include "common.fullname" . }}-inv-config
126 mountPath: /opt/config.json
128 - mountPath: /opt/cert/
130 - mountPath: /opt/logs/
134 value: consul.{{ include "common.namespace" . }}
135 - name: {{ include "common.name" . }}-filebeat
141 fieldPath: status.podIP
142 image: {{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}
143 imagePullPolicy: IfNotPresent
146 - mountPath: /var/log/onap/inventory
148 - mountPath: /usr/share/filebeat/data
150 - mountPath: /usr/share/filebeat/filebeat.yml
152 subPath: filebeat.yml
160 name: {{ include "common.fullname" . }}-filebeat-configmap
162 - name: {{ include "common.fullname" . }}-inv-config-input
164 name: {{ include "common.fullname" . }}-configmap
165 - name: {{ include "common.fullname" . }}-inv-config
171 - name: "{{ include "common.namespace" . }}-docker-registry-key"