Commit 551682dd authored by Harold Drost's avatar Harold Drost Committed by Vic Iglesias

Allow annotations for service. (#2306)

* Allow annotations for service. * Bumped version of chart * Allow annotations for service.
parent 19ad8acd
name: influxdb name: influxdb
version: 0.4.3 version: 0.4.4
description: Scalable datastore for metrics, events, and real-time analytics. description: Scalable datastore for metrics, events, and real-time analytics.
keywords: keywords:
- influxdb - influxdb
......
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
metadata: metadata:
{{- if .Values.service.annotations }}
annotations:
{{ toYaml .Values.service.annotations | indent 4 }}
{{- end }}
name: {{ template "fullname" . }} name: {{ template "fullname" . }}
labels: labels:
app: {{ template "fullname" . }} app: {{ template "fullname" . }}
......
...@@ -10,9 +10,11 @@ image: ...@@ -10,9 +10,11 @@ image:
## ref: http://kubernetes.io/docs/user-guide/services/ ## ref: http://kubernetes.io/docs/user-guide/services/
## ##
service: service:
## Add annotations to service
# annotations: {}
type: ClusterIP type: ClusterIP
## Persist data to a persitent volume ## Persist data to a persistent volume
## ##
persistence: persistence:
enabled: false enabled: false
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment