Helm charts for Distributed Edge Analytics.
[demo.git] / vnfs / DAaaS / collectd-helm / templates / daemonset.yaml
1 {{/*
2 # Copyright 2018 Intel Corporation, Inc
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
17 apiVersion: extensions/v1beta1
18 kind: DaemonSet
19 metadata:
20   name: {{ template "fullname" . }}
21   labels:
22     app: {{ template "name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ .Release.Name }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ template "name" . }}
31         collector: collectd
32         release: {{ .Release.Name }}
33     spec:
34       hostNetwork: true
35       containers:
36         - name: {{ .Chart.Name }}
37           image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
38           imagePullPolicy: {{ .Values.image.pullPolicy }}
39           securityContext:
40             privileged: true
41           volumeMounts:
42           - name: {{ template "fullname" . }}-config
43             mountPath: /opt/collectd/etc
44           - name: proc
45             mountPath: /mnt/proc
46             readOnly: true
47           - name: root
48             mountPath: /hostfs
49             readOnly: true
50           - name: etc
51             mountPath: /mnt/etc
52             readOnly: true
53           - name: run
54             mountPath: /var/run/docker.sock
55           resources:
56 {{ toYaml .Values.resources | indent 12 }}
57     {{- if .Values.nodeSelector }}
58       nodeSelector:
59 {{ toYaml .Values.nodeSelector | indent 8 }}
60     {{- end }}
61       volumes:
62       - name: {{ template "fullname" . }}-config
63         configMap:
64           name: {{ template "fullname" . }}-config
65           items:
66           - key: node-collectd.conf
67             path: collectd.conf
68       - name: proc
69         hostPath:
70           path: /proc
71       - name: root
72         hostPath:
73           path: /
74       - name: etc
75         hostPath:
76           path: /etc
77       - name: run
78         hostPath:
79           path: /var/run/docker.sock