Back to Charts

prometheus-couchdb-exporter

stable/prometheus-couchdb-exporter/README.md

latest4.3 KB
Original Source

prometheus-couchdb-exporter

DEPRECATED and moved to https://github.com/prometheus-community/helm-charts

couchdb-prometheus-exporter is a Prometheus exporter for CouchDB metrics.

TL;DR;

bash
$ helm install stable/prometheus-couchdb-exporter

Introduction

This chart bootstraps a couchdb-exporter deployment on a Kubernetes cluster using the Helm package manager.

Prerequisites

  • Kubernetes 1.8+ with Beta APIs enabled

Installing the Chart

To install the chart with the release name my-release:

bash
$ helm install --name my-release stable/prometheus-couchdb-exporter

The command deploys prometheus-couchdb-exporter on the Kubernetes cluster in the default configuration.

Uninstalling the Chart

To uninstall/delete the my-release deployment:

bash
$ helm delete my-release

The command removes all the Kubernetes components associated with the chart and deletes the release.

Configuration

The following table lists the configurable parameters and their default values.

ParameterDescriptionDefault
replicaCountdesired number of prometheus-couchdb-exporter pods1
image.repositoryprometheus-couchdb-exporter image repositorygesellix/couchdb-prometheus-exporter
image.tagprometheus-couchdb-exporter image tag16
image.pullPolicyimage pull policyIfNotPresent
service.typedesired service typeClusterIP
service.portservice external port9984
ingress.enabledenable ingress controller resourcefalse
ingress.annotationsannotations for the host's ingress recordsfalse
ingress.pathpath for the ingress route/
ingress.hostslist of host address for ingress creation
ingress.tlsutilize TLS backend in ingress
resourcescpu/memory resource requests/limits{}
nodeSelectornode labels for pod assignment{}
tolerationstolerations for pod assignment{}
affinityaffinity settings for proxy pod assignments{}
couchdb.uriaddress of the couchdbhttp://couchdb.default.svc:5984
couchdb.databasescomma separated databases to monitor_all_dbs
couchdb.usernameusername for couchdb
couchdb.passwordpassword for couchdb

For more information please refer to the [couchdb-prometheus-exporter]https://github.com/gesellix/couchdb-prometheus-exporter) documentation.

Specify each parameter using the --set key=value[,key=value] argument to helm install. For example,

bash
$ helm install --name my-release \
  --set "couchdb.uri=http://mycouchdb:5984" \
    stable/prometheus-couchdb-exporter

Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,

bash
$ helm install --name my-release -f values.yaml stable/prometheus-couchdb-exporter