f987595373
This commit adds two missing definition files which are meters.yaml and polling.yaml. meters.yaml is the meter definition file that used for ceilometer notification agent to convert meters. polling.yaml is the polling definition file that used for ceilometer polling agents to pull meters. Change-Id: I6b9b7543aa1a77661d6a86166af59fde85085513 Story: 2005019 Task: 29811 Signed-off-by: Angie Wang <angie.wang@windriver.com>
143 lines
5.6 KiB
YAML
143 lines
5.6 KiB
YAML
{{/*
|
|
Copyright 2017 The Openstack-Helm Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
{{- if .Values.manifests.daemonset_compute }}
|
|
{{- $envAll := . }}
|
|
|
|
{{- $mounts_ceilometer_compute := .Values.pod.mounts.ceilometer_compute.ceilometer_compute }}
|
|
{{- $mounts_ceilometer_compute_init := .Values.pod.mounts.ceilometer_compute.init_container }}
|
|
|
|
{{- $serviceAccountName := "ceilometer-compute" }}
|
|
{{ tuple $envAll "compute" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: ceilometer-compute
|
|
annotations:
|
|
{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
|
|
labels:
|
|
{{ tuple $envAll "ceilometer" "compute" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
{{ tuple $envAll "ceilometer" "compute" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 6 }}
|
|
{{ tuple $envAll "compute" | include "helm-toolkit.snippets.kubernetes_upgrades_daemonset" | indent 2 }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
{{ tuple $envAll "ceilometer" "compute" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }}
|
|
annotations:
|
|
{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }}
|
|
configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
|
|
configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
|
|
spec:
|
|
serviceAccountName: {{ $serviceAccountName }}
|
|
affinity:
|
|
{{ tuple $envAll "ceilometer" "compute" | include "helm-toolkit.snippets.kubernetes_pod_anti_affinity" | indent 8 }}
|
|
hostNetwork: true
|
|
hostPID: true
|
|
dnsPolicy: ClusterFirstWithHostNet
|
|
nodeSelector:
|
|
{{ .Values.labels.compute.node_selector_key }}: {{ .Values.labels.compute.node_selector_value }}
|
|
initContainers:
|
|
{{ tuple $envAll "compute" $mounts_ceilometer_compute_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
|
|
containers:
|
|
- name: ceilometer-compute
|
|
{{ tuple $envAll "ceilometer_compute" | include "helm-toolkit.snippets.image" | indent 10 }}
|
|
{{ tuple $envAll $envAll.Values.pod.resources.compute | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
|
|
command:
|
|
- /tmp/ceilometer-compute.sh
|
|
volumeMounts:
|
|
- name: pod-etc-ceilometer
|
|
mountPath: /etc/ceilometer
|
|
- name: ceilometer-etc
|
|
mountPath: /etc/ceilometer/ceilometer.conf
|
|
subPath: ceilometer.conf
|
|
readOnly: true
|
|
- name: ceilometer-etc
|
|
mountPath: /etc/ceilometer/api_paste.ini
|
|
subPath: api_paste.ini
|
|
readOnly: true
|
|
- name: ceilometer-etc
|
|
mountPath: /etc/ceilometer/policy.json
|
|
subPath: policy.json
|
|
readOnly: true
|
|
- name: ceilometer-etc
|
|
mountPath: /etc/ceilometer/event_definitions.yaml
|
|
subPath: event_definitions.yaml
|
|
readOnly: true
|
|
- name: ceilometer-etc
|
|
mountPath: /etc/ceilometer/event_pipeline.yaml
|
|
subPath: event_pipeline.yaml
|
|
readOnly: true
|
|
- name: ceilometer-etc
|
|
mountPath: /etc/ceilometer/pipeline.yaml
|
|
subPath: pipeline.yaml
|
|
readOnly: true
|
|
- name: ceilometer-etc
|
|
mountPath: /etc/ceilometer/gnocchi_resources.yaml
|
|
subPath: gnocchi_resources.yaml
|
|
readOnly: true
|
|
- name: ceilometer-etc
|
|
mountPath: /etc/ceilometer/polling.yaml
|
|
subPath: polling.yaml
|
|
readOnly: true
|
|
- name: ceilometer-bin
|
|
mountPath: /tmp/ceilometer-compute.sh
|
|
subPath: ceilometer-compute.sh
|
|
readOnly: true
|
|
- name: varlibnova
|
|
mountPath: /var/lib/nova
|
|
- name: varliblibvirt
|
|
mountPath: /var/lib/libvirt
|
|
- name: run
|
|
mountPath: /run
|
|
- name: cgroup
|
|
mountPath: /sys/fs/cgroup
|
|
- name: machine-id
|
|
mountPath: /etc/machine-id
|
|
readOnly: true
|
|
{{ if $mounts_ceilometer_compute.volumeMounts }}{{ toYaml $mounts_ceilometer_compute.volumeMounts | indent 12 }}{{ end }}
|
|
volumes:
|
|
- name: pod-etc-ceilometer
|
|
emptyDir: {}
|
|
- name: ceilometer-etc
|
|
secret:
|
|
secretName: ceilometer-etc
|
|
defaultMode: 0444
|
|
- name: ceilometer-bin
|
|
configMap:
|
|
name: ceilometer-bin
|
|
defaultMode: 0555
|
|
- name: varlibnova
|
|
hostPath:
|
|
path: /var/lib/nova
|
|
- name: varliblibvirt
|
|
hostPath:
|
|
path: /var/lib/libvirt
|
|
- name: run
|
|
hostPath:
|
|
path: /run
|
|
- name: cgroup
|
|
hostPath:
|
|
path: /sys/fs/cgroup
|
|
- name: machine-id
|
|
hostPath:
|
|
path: /etc/machine-id
|
|
{{ if $mounts_ceilometer_compute.volumes }}{{ toYaml $mounts_ceilometer_compute.volumes | indent 8 }}{{ end }}
|
|
{{- end }}
|