File tree 4 files changed +8
-1
lines changed
4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.3.2
18
+ version : 0.3.3
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ Helm charts for Airbyte.
47
47
| ` webapp.readinessProbe.successThreshold ` | Success threshold for readinessProbe | ` 1 ` |
48
48
| ` webapp.service.type ` | The service type to use for the webapp service | ` ClusterIP ` |
49
49
| ` webapp.service.port ` | The service port to expose the webapp on | ` 80 ` |
50
+ | ` webapp.service.annotations ` | Annotations for the webapp service resource | ` {} ` |
50
51
| ` webapp.resources.limits ` | The resources limits for the Web container | ` {} ` |
51
52
| ` webapp.resources.requests ` | The requested resources for the Web container | ` {} ` |
52
53
| ` webapp.nodeSelector ` | Node labels for pod assignment | ` {} ` |
Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ apiVersion: v1
3
3
kind : Service
4
4
metadata :
5
5
name : {{ include "common.names.fullname" . }}-webapp
6
+ {{- with .Values.webapp.service.annotations }}
7
+ annotations :
8
+ {{- toYaml . | nindent 4 }}
9
+ {{- end }}
6
10
spec :
7
11
type : {{ .Values.webapp.service.type }}
8
12
ports :
Original file line number Diff line number Diff line change @@ -89,9 +89,11 @@ webapp:
89
89
90
90
# # @param webapp.service.type The service type to use for the webapp service
91
91
# # @param webapp.service.port The service port to expose the webapp on
92
+ # # @param webapp.service.annotations Annotations for the webapp service resource
92
93
service :
93
94
type : ClusterIP
94
95
port : 80
96
+ annotations : {}
95
97
96
98
# # Web app resource requests and limits
97
99
# # ref: http://kubernetes.io/docs/user-guide/compute-resources/
You can’t perform that action at this time.
0 commit comments