Unverified Commit 19ac86ff authored by julienmancuso's avatar julienmancuso Committed by GitHub
Browse files

fix: allow custom annotations in api-store service (#1329)

parent 9907d104
...@@ -16,6 +16,10 @@ apiVersion: v1 ...@@ -16,6 +16,10 @@ apiVersion: v1
kind: Service kind: Service
metadata: metadata:
name: "dynamo-store" name: "dynamo-store"
{{- with .Values.service.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
labels: labels:
{{- include "helm.labels" . | nindent 4 }} {{- include "helm.labels" . | nindent 4 }}
spec: spec:
......
...@@ -65,6 +65,8 @@ service: ...@@ -65,6 +65,8 @@ service:
type: ClusterIP type: ClusterIP
# This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports # This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports
port: 80 port: 80
# This sets the annotations for the service more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
annotations: {}
# This block is for setting up the ingress for more information can be found here: https://kubernetes.io/docs/concepts/services-networking/ingress/ # This block is for setting up the ingress for more information can be found here: https://kubernetes.io/docs/concepts/services-networking/ingress/
ingress: ingress:
......
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