diff options
Diffstat (limited to 'vnfs')
-rw-r--r-- | vnfs/DAaaS/deploy/collection/requirements.yaml | 10 | ||||
-rw-r--r-- | vnfs/DAaaS/deploy/collection/values.yaml | 13 |
2 files changed, 23 insertions, 0 deletions
diff --git a/vnfs/DAaaS/deploy/collection/requirements.yaml b/vnfs/DAaaS/deploy/collection/requirements.yaml new file mode 100644 index 00000000..910063c3 --- /dev/null +++ b/vnfs/DAaaS/deploy/collection/requirements.yaml @@ -0,0 +1,10 @@ +dependencies: + + - name: cadvisor + condition: cadvisor.enabled + + - name: collectd + condition: collectd.enabled + + - name: prometheus-node-exporter + condition: prometheus-node-exporter.enabled diff --git a/vnfs/DAaaS/deploy/collection/values.yaml b/vnfs/DAaaS/deploy/collection/values.yaml index 7fd13869..d46f3861 100644 --- a/vnfs/DAaaS/deploy/collection/values.yaml +++ b/vnfs/DAaaS/deploy/collection/values.yaml @@ -26,3 +26,16 @@ global: ################################################################# # Collection Package Day-0 configuration defaults. ################################################################# + +################################################################# +# Enable or disable components +################################################################# + +cadvisor: + enabled: true + +collectd: + enabled: true + +prometheus-node-exporter: + enabled: true |