blob: 7ff5e66ee2f2a2fb7defb2699ea15ddb818811fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
#{{ if not .Values.disableAaiAaiResources }}
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: aai-resources
namespace: "{{ .Values.nsPrefix }}-aai"
spec:
selector:
matchLabels:
app: aai-resources
template:
metadata:
labels:
app: aai-resources
name: aai-resources
spec:
initContainers:
- command:
- /root/ready.py
args:
- --container-name
- hbase
env:
- name: NAMESPACE
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
image: {{ .Values.image.readiness }}
imagePullPolicy: {{ .Values.pullPolicy }}
name: aai-resources-readiness
containers:
- name: aai-resources
image: "{{ .Values.image.aaiResourcesImage }}:{{ .Values.image.aaiResourcesVersion}}"
imagePullPolicy: {{ .Values.pullPolicy }}
env:
- name: CHEF_BRANCH
value: master
- name: AAI_CHEF_ENV
value: simpledemo
- name: AAI_CORE_VERSION
value: 1.1.0-SNAPSHOT
- name: AAI_CHEF_LOC
value: /var/chef/aai-data/environments
- name: CHEF_GIT_URL
value: http://gerrit.onap.org/r/aai
- name: HBASE_STARTUP_ARTIFICIAL_DELAY
value: "60"
volumeMounts:
- mountPath: /etc/localtime
name: localtime
readOnly: true
- mountPath: /var/chef/aai-data/
name: aai-data
- mountPath: /var/log/onap
name: aai-resources-logs
- mountPath: /opt/app/aai-resources/bundleconfig/etc/logback.xml
name: aai-resources-log-conf
subPath: logback.xml
ports:
- containerPort: 8447
readinessProbe:
tcpSocket:
port: 8447
initialDelaySeconds: 5
periodSeconds: 10
- name: filebeat-onap-aai-resources
image: {{ .Values.image.filebeat }}
imagePullPolicy: {{ .Values.pullPolicy }}
volumeMounts:
- mountPath: /usr/share/filebeat/filebeat.yml
name: filebeat-conf
- mountPath: /var/log/onap
name: aai-resources-logs
- mountPath: /usr/share/filebeat/data
name: aai-resources-filebeat
volumes:
- name: localtime
hostPath:
path: /etc/localtime
- name: aai-data
hostPath:
path: "/dockerdata-nfs/{{ .Values.nsPrefix }}/aai/aai-data/"
- name: filebeat-conf
hostPath:
path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/filebeat/logback/filebeat.yml
- name: aai-resources-logs
emptyDir: {}
- name: aai-resources-filebeat
emptyDir: {}
- name: aai-resources-log-conf
configMap:
name: aai-resources-configmap
restartPolicy: Always
imagePullSecrets:
- name: "{{ .Values.nsPrefix }}-docker-registry-key"
---
apiVersion: v1
kind: ConfigMap
metadata:
name: aai-resources-configmap
namespace: {{ .Values.nsPrefix }}-aai
data:
{{ (.Files.Glob "resources/resources/conf/logback.xml").AsConfig | indent 2 }}
#{{ end }}
|