Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

[stable/prometheus] Document in README and Values "enableServiceLinks" #23346

Merged
merged 6 commits into from
Jul 27, 2020
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stable/prometheus/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: prometheus
version: 11.10.0
version: 11.10.1
appVersion: 2.19.0
description: Prometheus is a monitoring system and time series database.
home: https://prometheus.io/
Expand Down
1 change: 1 addition & 0 deletions stable/prometheus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ Parameter | Description | Default
`server.podDisruptionBudget.enabled` | If true, create a PodDisruptionBudget | `false`
`server.podDisruptionBudget.maxUnavailable` | Maximum unavailable instances in PDB | `1`
`server.priorityClassName` | Prometheus server priorityClassName | `nil`
`server.enableServiceLinks` | Set service environment variables in Prometheus server pods | `true`
`server.schedulerName` | Prometheus server alternate scheduler name | `nil`
`server.persistentVolume.enabled` | If true, Prometheus server will create a Persistent Volume Claim | `true`
`server.persistentVolume.accessModes` | Prometheus server data Persistent Volume access modes | `[ReadWriteOnce]`
Expand Down
5 changes: 4 additions & 1 deletion stable/prometheus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,10 @@ server:
##
priorityClassName: ""

# EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
## EnableServiceLinks indicates whether information about services should be injected
## into pod's environment variables, matching the syntax of Docker links.
## WARNING: Not supported in K8s prior to v1.13.0 - therefore, the field will be skipped by the chart.
##
enableServiceLinks: true

## The URL prefix at which the container can be accessed. Useful in the case the '-web.external-url' includes a slug
Expand Down