Skip to content

Commit fc1eb71

Browse files
authored
add annotations (#93)
1 parent fc4b73a commit fc1eb71

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

charts/port-ocean/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: port-ocean
33
description: A Helm chart for Port Ocean integrations
44
type: application
5-
version: 0.1.17
5+
version: 0.1.18
66
appVersion: "0.1.0"
77
home: https://getport.io/
88
sources:

charts/port-ocean/templates/service.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ metadata:
66
name: {{ include "port-ocean.serviceName" . }}
77
labels:
88
{{- include "port-ocean.labels" $ | nindent 4 }}
9+
annotations:
10+
{{- if .Values.service.annotations }}
11+
{{- toYaml .Values.service.annotations | nindent 4 }}
12+
{{- end }}
913
spec:
1014
type: {{ .Values.service.type }}
1115
ports:

charts/port-ocean/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ service:
6060
enabled: true
6161
type: ClusterIP
6262
port: 8000
63+
annotations: {}
6364

6465
ingress:
6566
enabled: false

0 commit comments

Comments
 (0)