summaryrefslogtreecommitdiffstats
path: root/performanceTests/k8s/influxdb/deployment.yaml
diff options
context:
space:
mode:
authorVijay Venkatesh Kumar <vv770d@att.com>2020-06-11 20:39:21 +0000
committerGerrit Code Review <gerrit@onap.org>2020-06-11 20:39:21 +0000
commit4529faa9cdbc16209cbca24a964d709552c9fe2d (patch)
tree16d414397a7232e196219a47230c5cef48bc3bdf /performanceTests/k8s/influxdb/deployment.yaml
parent85e7a08c4b64fcd832387a9d5b80b7f4624a3afd (diff)
parent3b6ba181623e844d5012362209d2f29616315395 (diff)
Merge "Add CPU/RAM measurements collection"
Diffstat (limited to 'performanceTests/k8s/influxdb/deployment.yaml')
-rw-r--r--performanceTests/k8s/influxdb/deployment.yaml20
1 files changed, 19 insertions, 1 deletions
diff --git a/performanceTests/k8s/influxdb/deployment.yaml b/performanceTests/k8s/influxdb/deployment.yaml
index 3b039227..a1782973 100644
--- a/performanceTests/k8s/influxdb/deployment.yaml
+++ b/performanceTests/k8s/influxdb/deployment.yaml
@@ -39,6 +39,18 @@ spec:
env:
- name: INFLUXDB_DB
value: "jmeter"
+ volumeMounts:
+ - name: ves-influxdb-conf
+ mountPath: /etc/influxdb
+ - name: ves-influxdb-types
+ mountPath: /usr/share/collectd
+ volumes:
+ - name: ves-influxdb-conf
+ configMap:
+ name: ves-influxdb-conf
+ - name: ves-influxdb-types
+ configMap:
+ name: ves-influxdb-types
---
apiVersion: v1
kind: Service
@@ -53,5 +65,11 @@ spec:
type: NodePort
ports:
- port: 8086
+ name: influx-db
targetPort: 8086
- nodePort: 30002 \ No newline at end of file
+ nodePort: 30002
+ - port: 25826
+ protocol: UDP
+ name: collectd-port
+ targetPort: 25826
+ nodePort: 30003 \ No newline at end of file