aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/deploy/collection/charts/prometheus/templates/prometheus.yaml
diff options
context:
space:
mode:
authorDileep Ranganathan <dileep.ranganathan@intel.com>2019-10-31 20:04:21 -0700
committerDileep Ranganathan <dileep.ranganathan@intel.com>2019-11-11 14:39:44 -0800
commit938afb8217d5414c4cd0d63650e24d0398ddcc91 (patch)
tree7a0e34c1e956f40ab6ad1e57bd8f8852eb25a098 /vnfs/DAaaS/deploy/collection/charts/prometheus/templates/prometheus.yaml
parentd11cb99fb101a6798fd57fa44d332737d6637e75 (diff)
Helm charts for Prometheus Kafka Remote Writer
Added Helm charts for prom-kafka-writer micro service. Removed older kafka adapter due to inflexibility. Issue-ID: ONAPARC-392 Signed-off-by: Dileep Ranganathan <dileep.ranganathan@intel.com> Change-Id: I6f8e33a5e096c6b88badb29718e1e7ce126889fd
Diffstat (limited to 'vnfs/DAaaS/deploy/collection/charts/prometheus/templates/prometheus.yaml')
-rw-r--r--vnfs/DAaaS/deploy/collection/charts/prometheus/templates/prometheus.yaml31
1 files changed, 0 insertions, 31 deletions
diff --git a/vnfs/DAaaS/deploy/collection/charts/prometheus/templates/prometheus.yaml b/vnfs/DAaaS/deploy/collection/charts/prometheus/templates/prometheus.yaml
index 862e8650..53494920 100644
--- a/vnfs/DAaaS/deploy/collection/charts/prometheus/templates/prometheus.yaml
+++ b/vnfs/DAaaS/deploy/collection/charts/prometheus/templates/prometheus.yaml
@@ -17,34 +17,3 @@ spec:
- {{ .Release.Namespace | quote }}
resources:
{{ toYaml .Values.prometheus.resources | indent 4 }}
-
- # TODO: Templatizing multiple remote read/write.
- # Especially Kafka adapater.
- remoteRead:
- - url: "{{ .Values.m3db.url }}/api/v1/prom/remote/read"
- # To test reading even when local Prometheus has the data
- readRecent: true
- remoteWrite:
- - url: "{{ .Values.m3db.url }}/api/v1/prom/remote/write"
- # To differentiate between local and remote storage we will add a storage label
- writeRelabelConfigs:
- - targetLabel: metrics_storage
- replacement: m3db_remote
- - url: "{{ .Values.kafkaAdapter.url }}/receive"
- containers:
- - name: {{ template "prometheus.name" . }}-adapter
- image: "{{ .Values.kafkaAdapter.image.repository }}:{{ .Values.kafkaAdapter.image.tag }}"
- imagePullPolicy: {{ .Values.kafkaAdapter.image.pullPolicy }}
- env:
- - name: KAFKA_BROKER_LIST
- value: {{ .Values.kafkaAdapter.broker }}
- - name: KAFKA_TOPIC
- value: {{ .Values.kafkaAdapter.topic }}
- - name: SERIALIZATION_FORMAT
- value: {{ .Values.kafkaAdapter.serializationFormat }}
- - name: PORT
- value: {{ quote .Values.kafkaAdapter.port }}
- - name: LOG_LEVEL
- value: {{ .Values.kafkaAdapter.logLevel }}
- resources:
-{{ toYaml .Values.kafkaAdapter.resources | indent 6 }}