Skip to content

Commit

Permalink
Merge pull request #99 from CommanderStorm/replicaCount
Browse files Browse the repository at this point in the history
Removed the `replicaCount` option
  • Loading branch information
dirsigler committed Apr 9, 2023
2 parents 0695b41 + 9363d94 commit 5747377
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/uptime-kuma/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ name: uptime-kuma
sources:
- https://github.com/louislam/uptime-kuma
type: application
version: 2.8.1
version: 2.9.1
1 change: 0 additions & 1 deletion charts/uptime-kuma/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ A self-hosted Monitoring tool like "Uptime-Robot".
| podSecurityContext | object | `{}` | |#
| readinessProbe.enabled | bool | `true` | |
| readinessProbe.initialDelaySeconds | int | `5` | |
| replicaCount | int | `1` | |
| resources | object | `{}` | |
| securityContext | object | `{}` | |
| service.annotations | object | `{}` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/uptime-kuma/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
labels:
{{- include "uptime-kuma.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
replicas: 1
selector:
matchLabels:
{{- include "uptime-kuma.selectorLabels" . | nindent 6 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/uptime-kuma/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
{{- include "uptime-kuma.labels" . | nindent 4 }}
spec:
serviceName: {{ include "uptime-kuma.fullname" . }}
replicas: {{ .Values.replicaCount }}
replicas: 1
selector:
matchLabels:
{{- include "uptime-kuma.selectorLabels" . | nindent 6 }}
Expand Down
2 changes: 0 additions & 2 deletions charts/uptime-kuma/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 1

image:
repository: louislam/uptime-kuma
pullPolicy: IfNotPresent
Expand Down

0 comments on commit 5747377

Please sign in to comment.