diff --git a/stable/prometheus-nats-exporter/Chart.yaml b/stable/prometheus-nats-exporter/Chart.yaml index 9e3a00816c..c12aed56b9 100644 --- a/stable/prometheus-nats-exporter/Chart.yaml +++ b/stable/prometheus-nats-exporter/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 -appVersion: "0.6.0" +appVersion: "0.6.2" description: A Helm chart for prometheus-nats-exporter name: prometheus-nats-exporter -version: 2.4.0 +version: 2.5.0 home: https://github.com/nats-io/prometheus-nats-exporter sources: - https://github.com/nats-io/prometheus-nats-exporter diff --git a/stable/prometheus-nats-exporter/README.md b/stable/prometheus-nats-exporter/README.md index 411ee75fd6..83ad94e7cb 100644 --- a/stable/prometheus-nats-exporter/README.md +++ b/stable/prometheus-nats-exporter/README.md @@ -39,7 +39,7 @@ The following table lists the configurable parameters of the postgres Exporter c | Parameter | Description | Default | | --------------------------------- | ------------------------------------------------------- | ------------------------------------------------ | | `image` | Image | `synadia/prometheus-nats-exporter` | -| `imageTag` | Image tag | `0.6.0` | +| `imageTag` | Image tag | `0.6.2` | | `imagePullPolicy` | Image pull policy | `IfNotPresent` | | `service.type` | Service type | `ClusterIP` | | `service.port` | The service port | `80` | @@ -58,6 +58,7 @@ The following table lists the configurable parameters of the postgres Exporter c | `config.metrics.routez` | NATS routez metrics | `true` | | `config.metrics.serverz` | NATS serverz metrics | `true` | | `config.metrics.subz` | NATS subz metrics | `true` | +| `config.metrics.gatewayz | NATS gatewayz metrics | `true` | | `tolerations` | Add tolerations | `[]` | | `nodeSelector` | node labels for pod assignment | `{}` | | `affinity` | node/pod affinities | `{}` | diff --git a/stable/prometheus-nats-exporter/templates/deployment.yaml b/stable/prometheus-nats-exporter/templates/deployment.yaml index 214b8ab93b..8da6b3dda2 100644 --- a/stable/prometheus-nats-exporter/templates/deployment.yaml +++ b/stable/prometheus-nats-exporter/templates/deployment.yaml @@ -46,6 +46,9 @@ spec: {{- if .Values.config.metrics.subz }} - "-subz" {{- end }} + {{- if .Values.config.metrics.gatewayz }} + - "-gatewayz" + {{- end }} - "http://{{ .Values.config.nats.service }}.{{ .Values.config.nats.namespace }}.svc:{{ .Values.config.nats.port }}" image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" imagePullPolicy: {{ .Values.image.pullPolicy }} diff --git a/stable/prometheus-nats-exporter/values.yaml b/stable/prometheus-nats-exporter/values.yaml index 98325ea09e..bd26c22bbb 100644 --- a/stable/prometheus-nats-exporter/values.yaml +++ b/stable/prometheus-nats-exporter/values.yaml @@ -6,7 +6,7 @@ replicaCount: 1 image: repository: synadia/prometheus-nats-exporter - tag: 0.6.0 + tag: 0.6.2 pullPolicy: IfNotPresent service: @@ -45,6 +45,7 @@ config: routez: true serverz: true subz: true + gatewayz: true nodeSelector: {}