-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add prometheus exporter support to helm chart #308
Conversation
helm-chart/README.md
Outdated
@@ -82,6 +82,11 @@ Parameter | Description | Default | |||
`controller.watchNamespace` | Namespace to watch for Ingress resources. By default the Ingress controller watches all namespaces. | "" | |||
`controller.healthStatus` | Add a location "/nginx-health" to the default server. The location responds with the 200 status code for any request. Useful for external health-checking of the Ingress controller. | false | |||
`rbac.create` | Configures RBAC. | true | |||
`prometheues.create` | Deploys a Prometheus exporter container within the Ingress controller pod. Requires NGINX Plus. `controller.nginxplus` must be set to `true` | false | |||
`prometheus.port` | Configures the port to scrape the metrics | 9113 |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
helm-chart/README.md
Outdated
`prometheus.port` | Configures the port to scrape the metrics | 9113 | ||
`prometheus.image.repository` | The image repository of the Prometheus exporter. | nginx/nginx-prometheus-exporter | ||
`prometheus.image.tag` | The tag of the Prometheus exporter image. | 0.1.0 | ||
`prometheus.image.pullPolicy` | The pull policy for the Prometheus exporter image. | IfNotPresent |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe drop all the "The"s. "Pull policy..."
475e2c3
to
22576ea
Compare
- Update helm chart documentation - Add prometheus support to daemonset and deployment templates
22576ea
to
c40eeb7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Tested in GKE 👍
Added Prometheus exporter support to NGINX Plus Ingress Controller
Disabled by default.
Exporter image, repository and scraping port are configurable.
Minor chart version increment