diff options
author | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2019-08-27 23:36:11 -0700 |
---|---|---|
committer | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2019-08-27 23:36:11 -0700 |
commit | dba342aad0cf20eb3bf3dc486845b823fad6a0ec (patch) | |
tree | 983e87c9fa4f36605b76811fab80559b07e50692 /vnfs | |
parent | 6ae0dc5fdec5b63bc1666a4dc41f931f1b270d3a (diff) |
Add readme for configuring collectd-operator
Add readme for configuring collectd-operator
Issue-ID: ONAPARC-461
Signed-off-by: Dileep Ranganathan <dileep.ranganathan@intel.com>
Change-Id: I351577055eb6a93326c3243c42f4149dc06b6b27
Diffstat (limited to 'vnfs')
-rw-r--r-- | vnfs/DAaaS/README.md | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/vnfs/DAaaS/README.md b/vnfs/DAaaS/README.md index 932173c5..a9c99327 100644 --- a/vnfs/DAaaS/README.md +++ b/vnfs/DAaaS/README.md @@ -137,7 +137,7 @@ Custom Collectd 5. Edit the values.yaml and change the image repository and tag using COLLECTD_IMAGE_NAME appropriately. 6. Place the collectd.conf in - $DA_WORKING_DIR/collection/charts/collectd/resources/config + $DA_WORKING_DIR/collection/charts/collectd/resources 7. cd $DA_WORKING_DIR/collection 8. helm install -n cp . -f values.yaml --namespace=edge1 @@ -165,6 +165,24 @@ cp13-prometheus-node-exporter ClusterIP 10.43.17.242 <none> 9100/TC cp13-prometheus-prometheus NodePort 10.43.26.155 <none> 9090:30090/TCP prometheus-operated ClusterIP None <none> 9090/TCP ``` +#### Configure Collectd Plugins +1. Using the sample [collectdglobal.yaml](microservices/collectd-operator/examples/collectd/collectdglobal.yaml), Configure the CollectdGlobal CR +2. If there are additional Types.db files to update, Copy the additional types.db files to resources folder. +3. Create a ConfigMap to load the types.db and update the configMap with name of the ConfigMap created. +4. Create and configure the required CollectdPlugin CRs. Use these samples as a reference [cpu_collectdplugin_cr.yaml](microservices/collectd-operator/examples/collectd/cpu_collectdplugin_cr.yaml), [prometheus_collectdplugin_cr.yaml](microservices/collectd-operator/examples/collectd/prometheus_collectdplugin_cr.yaml). +4. Use the same namespace where the collection package was installed. +5. Assuming it is edge1, create the config resources that are applicable. Apply the following commands in the same order. +```yaml +# Note: +## 1. Create Configmap is optional and required only if additional types.db file needs to be mounted. +## 2. Add/Remove --from-file accordingly. Use the correct file name based on the context. +kubectl create configmap typesdb-configmap --from-file ./resource/[FILE_NAME1] --from-file ./resource/[FILE_NAME2] +kubectl create -f edge1 collectdglobal.yaml +kubectl create -f edge1 [PLUGIN_NAME1]_collectdplugin_cr.yaml +kubectl create -f edge1 [PLUGIN_NAME2]_collectdplugin_cr.yaml +kubectl create -f edge1 [PLUGIN_NAME3]_collectdplugin_cr.yaml +... +``` ## Install Minio Model repository * Prerequisite: Dynamic storage provisioner needs to be enabled. Either rook-ceph ($DA_WORKING_DIR/00-init) or another alternate provisioner needs to be enabled. |