Skip to content

Commit 3f39a52

Browse files
authored
Merge pull request #224 from dirsigler/feat/loadbalancer-ip
feat: Add loadBalancerIP support for Service
2 parents d7824ec + 982a73c commit 3f39a52

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

charts/uptime-kuma/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ dependencies:
1616
repository: https://charts.bitnami.com/bitnami
1717
condition: mariadb.enabled
1818
type: application
19-
version: 2.24.0
19+
version: 2.25.0

charts/uptime-kuma/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# uptime-kuma
22

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

55
A self-hosted Monitoring tool like "Uptime-Robot".
66

@@ -95,6 +95,7 @@ A self-hosted Monitoring tool like "Uptime-Robot".
9595
| resources | object | `{}` | |
9696
| securityContext | object | `{}` | |
9797
| service.annotations | object | `{}` | |
98+
| service.loadBalancerIP | string | `nil` | |
9899
| service.nodePort | string | `nil` | |
99100
| service.port | int | `3001` | |
100101
| service.type | string | `"ClusterIP"` | |

charts/uptime-kuma/templates/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.service.type }}
14+
{{- with .Values.service.loadBalancerIP }}
15+
loadBalancerIP: {{ . }}
16+
{{- end }}
1417
ports:
1518
- port: {{ .Values.service.port }}
1619
targetPort: {{ include "uptime-kuma.port" . }}

charts/uptime-kuma/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ service:
5252
type: ClusterIP
5353
port: 3001
5454
nodePort:
55+
loadBalancerIP:
5556
annotations: {}
5657

5758
ingress:

0 commit comments

Comments
 (0)