diff options
Diffstat (limited to 'vnfs/DAaaS/microservices/collectd-operator/deploy')
4 files changed, 0 insertions, 55 deletions
diff --git a/vnfs/DAaaS/microservices/collectd-operator/deploy/crds/collectdglobal.yaml b/vnfs/DAaaS/microservices/collectd-operator/deploy/crds/collectdglobal.yaml deleted file mode 100644 index 60dec7c4..00000000 --- a/vnfs/DAaaS/microservices/collectd-operator/deploy/crds/collectdglobal.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: onap.org/v1alpha1 -kind: CollectdGlobal -metadata: - name: example-collectdglobal -spec: - # Add fields here - globalOptions: | - BaseDir "/opt/collectd/var/lib/collectd" - PIDFile "/opt/collectd/var/run/collectd.pid" - PluginDir "/opt/collectd/lib/collectd" - TypesDB "/opt/collectd/share/collectd/types.db" - TypesDB "/opt/collectd/share/collectd/vcmts.types.db" - #Hostname "localhost" - Interval 1 - configMap: typesdb-configmap diff --git a/vnfs/DAaaS/microservices/collectd-operator/deploy/crds/cpu_collectdplugin_cr.yaml b/vnfs/DAaaS/microservices/collectd-operator/deploy/crds/cpu_collectdplugin_cr.yaml deleted file mode 100644 index d10b82af..00000000 --- a/vnfs/DAaaS/microservices/collectd-operator/deploy/crds/cpu_collectdplugin_cr.yaml +++ /dev/null @@ -1,14 +0,0 @@ -apiVersion: onap.org/v1alpha1 -kind: CollectdPlugin -metadata: - name: cpu -spec: - # Add fields here - pluginName: cpu - pluginConf: | - <Plugin "cpu"> - Interval 5 - ReportByState false - ReportByCpu false - </Plugin> - diff --git a/vnfs/DAaaS/microservices/collectd-operator/deploy/crds/memory_collectdplugin_cr.yaml b/vnfs/DAaaS/microservices/collectd-operator/deploy/crds/memory_collectdplugin_cr.yaml deleted file mode 100644 index ee051ed3..00000000 --- a/vnfs/DAaaS/microservices/collectd-operator/deploy/crds/memory_collectdplugin_cr.yaml +++ /dev/null @@ -1,14 +0,0 @@ -apiVersion: onap.org/v1alpha1 -kind: CollectdPlugin -metadata: - name: memory -spec: - # Add fields here - pluginName: "memory" - pluginConf: | - <Plugin "memory"> - Interval 30 - ValuesAbsolute false - ValuesPercentage true - </Plugin> -
\ No newline at end of file diff --git a/vnfs/DAaaS/microservices/collectd-operator/deploy/crds/prometheus_collectdplugin_cr.yaml b/vnfs/DAaaS/microservices/collectd-operator/deploy/crds/prometheus_collectdplugin_cr.yaml deleted file mode 100644 index 1b8cf9bc..00000000 --- a/vnfs/DAaaS/microservices/collectd-operator/deploy/crds/prometheus_collectdplugin_cr.yaml +++ /dev/null @@ -1,12 +0,0 @@ -apiVersion: onap.org/v1alpha1 -kind: CollectdPlugin -metadata: - name: prometheus -spec: - # Add fields here - pluginName: "write_prometheus" - pluginConf: | - <Plugin "write_prometheus"> - Port 9103 - </Plugin> - |