209b853dd31ea6452d518c6d4697b5dae0503f4f
[demo.git] / vnfs / DAaaS / collection / charts / collectd / templates / daemonset.yaml
1 {{/*
2 # Copyright 2019 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   annotations:
22     checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
23   labels:
24     app: {{ template "name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ .Release.Name }}
27 spec:
28   replicas: {{ .Values.replicaCount }}
29   template:
30     metadata:
31       labels:
32         app: {{ template "name" . }}
33         collector: collectd
34         release: {{ .Release.Name }}
35     spec:
36       hostNetwork: true
37       containers:
38         - name: {{ .Chart.Name }}
39           image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
40           imagePullPolicy: {{ .Values.image.pullPolicy }}
41           securityContext:
42             privileged: true
43           volumeMounts:
44           - name: {{ template "fullname" . }}-config
45             mountPath: /opt/collectd/etc
46           - name: proc
47             mountPath: /mnt/proc
48             readOnly: true
49           - name: root
50             mountPath: /hostfs
51             readOnly: true
52           - name: etc
53             mountPath: /mnt/etc
54             readOnly: true
55           - name: run
56             mountPath: /var/run/docker.sock
57           resources:
58 {{ toYaml .Values.resources | indent 12 }}
59     {{- if .Values.nodeSelector }}
60       nodeSelector:
61 {{ toYaml .Values.nodeSelector | indent 8 }}
62     {{- end }}
63       volumes:
64       - name: {{ template "fullname" . }}-config
65         configMap:
66           name: {{ template "fullname" . }}-config
67           items:
68           - key: node-collectd.conf
69             path: collectd.conf
70       - name: proc
71         hostPath:
72           path: /proc
73       - name: root
74         hostPath:
75           path: /
76       - name: etc
77         hostPath:
78           path: /etc
79       - name: run
80         hostPath:
81           path: /var/run/docker.sock