mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Allow annotations for service. (#2306)
* Allow annotations for service. * Bumped version of chart * Allow annotations for service.
This commit is contained in:
committed by
Vic Iglesias
parent
f25eb872ac
commit
5d4b769dd4
@@ -1,5 +1,5 @@
|
||||
name: influxdb
|
||||
version: 0.4.3
|
||||
version: 0.4.4
|
||||
description: Scalable datastore for metrics, events, and real-time analytics.
|
||||
keywords:
|
||||
- influxdb
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
{{- if .Values.service.annotations }}
|
||||
annotations:
|
||||
{{ toYaml .Values.service.annotations | indent 4 }}
|
||||
{{- end }}
|
||||
name: {{ template "fullname" . }}
|
||||
labels:
|
||||
app: {{ template "fullname" . }}
|
||||
|
||||
@@ -10,9 +10,11 @@ image:
|
||||
## ref: http://kubernetes.io/docs/user-guide/services/
|
||||
##
|
||||
service:
|
||||
## Add annotations to service
|
||||
# annotations: {}
|
||||
type: ClusterIP
|
||||
|
||||
## Persist data to a persitent volume
|
||||
## Persist data to a persistent volume
|
||||
##
|
||||
persistence:
|
||||
enabled: false
|
||||
|
||||
Reference in New Issue
Block a user