Refactor Distributed Analytics project structure
[demo.git] / vnfs / DAaaS / deploy / 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   updateStrategy:
30     type: RollingUpdate
31   template:
32     metadata:
33       labels:
34         app: {{ template "name" . }}
35         collector: collectd
36         release: {{ .Release.Name }}
37     spec:
38       hostNetwork: true
39       containers:
40         - name: {{ .Chart.Name }}
41           image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
42           imagePullPolicy: {{ .Values.image.pullPolicy }}
43           securityContext:
44             privileged: true
45           volumeMounts:
46           - name: {{ template "fullname" . }}-config
47             mountPath: /opt/collectd/etc
48           - name: proc
49             mountPath: /mnt/proc
50             readOnly: true
51           - name: root
52             mountPath: /hostfs
53             readOnly: true
54           - name: etc
55             mountPath: /mnt/etc
56             readOnly: true
57           - name: run
58             mountPath: /var/run/docker.sock
59           resources:
60 {{ toYaml .Values.resources | indent 12 }}
61     {{- if .Values.nodeSelector }}
62       nodeSelector:
63 {{ toYaml .Values.nodeSelector | indent 8 }}
64     {{- end }}
65       volumes:
66       - name: {{ template "fullname" . }}-config
67         configMap:
68           name: {{ template "fullname" . }}-config
69           items:
70           - key: node-collectd.conf
71             path: collectd.conf
72       - name: proc
73         hostPath:
74           path: /proc
75       - name: root
76         hostPath:
77           path: /
78       - name: etc
79         hostPath:
80           path: /etc
81       - name: run
82         hostPath:
83           path: /var/run/docker.sock