"...ssh:/git@developer.sourcefind.cn:2222/OpenDAS/dynamo.git" did not exist on "5c461d6117869176b06384a35015c7d10717b74e"
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
kind: Service
metadata:
name: "dynamo-store"
{{- with .Values.service.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
labels:
{{- include "helm.labels" . | nindent 4 }}
spec:
......
......@@ -65,6 +65,8 @@ service:
type: ClusterIP
# This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports
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/
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