update prometheus template args

This commit is contained in:
Curt Bushko 2022-10-19 15:44:19 -04:00
parent 598670e376
commit c780381d44
1 changed files with 14 additions and 3 deletions

View File

@ -111,9 +111,20 @@ type BootstrapTplArgs struct {
// the envoy_prometheus_bind_addr listener. // the envoy_prometheus_bind_addr listener.
PrometheusScrapePath string PrometheusScrapePath string
// PrometheusCAFile is the path to a CA file for Envoy to use when serving TLS on the Prometheius metrics
// endpoint. Only applicable when envoy_prometheus_bind_addr is set in the proxy config.
PrometheusCAFile string PrometheusCAFile string
// PrometheusCAPath is the path to a directory of CA certificates for Envoy to use when serving the Prometheus
// metrics endpoint. Only applicable when envoy_prometheus_bind_addr is set in the proxy config.
PrometheusCAPath string PrometheusCAPath string
// PrometheusCertFile is the path to a certificate file for Envoy to use when serving TLS on the Prometheus
// metrics endpoint. Only applicable when envoy_prometheus_bind_addr is set in the proxy config.
PrometheusCertFile string PrometheusCertFile string
// PrometheusKeyFile is the path to a private key file Envoy to use when service TLS on the Prometheus metrics
// endpoint. Only applicable when envoy_prometheus_bind_addr is set in the proxy config.
PrometheusKeyFile string PrometheusKeyFile string
} }