DAaaS: enhance collectd to be more configurable
[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       {{- if .Values.serviceAccountName }}
40       serviceAccountName: {{ .Values.serviceAccountName }}
41       {{- end }}
42 {{- if .Values.tolerations }}
43       tolerations:
44 {{ toYaml .Values.tolerations | trim | indent 8 }}
45 {{- end }}
46 {{- if .Values.nodeSelector }}
47       nodeSelector:
48 {{ toYaml .Values.nodeSelector | trim | indent 8 }}
49 {{- end }}
50       containers:
51         - name: {{ .Chart.Name }}
52           image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
53           imagePullPolicy: {{ .Values.image.pullPolicy }}
54           securityContext:
55             allowPrivilegeEscalation: true
56             privileged: true
57 {{- if .Values.env }}
58           env:
59 {{ toYaml .Values.env | trim | indent 10 }}
60 {{- end  }}
61 {{- if .Values.command }}
62           command:
63 {{ toYaml .Values.command | trim | indent 10 }}
64 {{- end  }}
65 {{- if .Values.args }}
66           args:
67 {{ toYaml .Values.args | trim | indent 10 }}
68 {{- end  }}
69           volumeMounts:
70           - name: {{ template "fullname" . }}-config
71             mountPath: {{ .Values.configMountPath }}
72 {{- if .Values.volumeMounts }}
73 {{ toYaml .Values.volumeMounts | trim | indent 10 }}
74 {{- end }}
75           resources:
76 {{- toYaml .Values.resources | trim | indent 12}}
77       volumes:
78       - name: {{ template "fullname" . }}-config
79         configMap:
80           name: {{ template "fullname" . }}-config
81           defaultMode: 0744
82 {{- if .Values.volumeMounts }}
83 {{ toYaml .Values.volumes | indent 6 }}
84 {{- end }}