Skip to content

Commit 196e05e

Browse files
authored
feat: support setting loadBalancerClass for dpm service (#210)
1 parent 4ee56f1 commit 196e05e

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

charts/api7/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.17.24
18+
version: 0.17.25
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/api7/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# api7ee3
22

3-
![Version: 0.17.24](https://img.shields.io/badge/Version-0.17.24-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.8.14](https://img.shields.io/badge/AppVersion-3.8.14-informational?style=flat-square)
3+
![Version: 0.17.25](https://img.shields.io/badge/Version-0.17.25-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.8.14](https://img.shields.io/badge/AppVersion-3.8.14-informational?style=flat-square)
44

55
A Helm chart for Kubernetes
66

charts/api7/templates/dp-manager-service.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ metadata:
1111
{{- end }}
1212
spec:
1313
type: {{ .Values.dp_manager_service.type }}
14+
{{- if .Values.dp_manager_service.loadBalancerClass }}
15+
loadBalancerClass: {{ .Values.dp_manager_service.loadBalancerClass }}
16+
{{- end }}
1417
ports:
1518
- port: {{ .Values.dp_manager_service.port }}
1619
targetPort: http

charts/api7/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ dashboard_service:
153153

154154
dp_manager_service:
155155
type: ClusterIP
156+
# loadBalancerClass: "my-loadbalancer-class"
156157
annotations: {}
157158
port: 7900
158159
tlsPort: 7943

0 commit comments

Comments
 (0)