Skip to content

Commit 3f3d297

Browse files
authored
fix: Fix HPA ingester typo (grafana#13158)
**What this PR does / why we need it**: This PR is necessary due to the presence of a typo. With the typo present the following error occurs: ``` no matches for kind "Statefulset" in group "apps" ``` **Which issue(s) this PR fixes**: Fixes grafana#13152
1 parent 6ce418b commit 3f3d297

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

production/helm/loki/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ Entries should include a reference to the pull request that introduced the chang
1313

1414
[//]: # (<AUTOMATED_UPDATES_LOCATOR> : do not remove this line. This locator is used by the CI pipeline to automatically create a changelog entry for each new Loki release. Add other chart versions and respective changelog entries bellow this line.)
1515

16+
## 6.6.6
17+
18+
- [BUGFIX] Fix HPA ingester typo
19+
1620
## 6.6.5
1721

1822
- [BUGFIX] Fix querier address in SingleBinary mode

production/helm/loki/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: loki
33
description: Helm chart for Grafana Loki and Grafana Enterprise Logs supporting both simple, scalable and distributed modes.
44
type: application
55
appVersion: 3.0.0
6-
version: 6.6.5
6+
version: 6.6.6
77
home: https://grafana.github.io/helm-charts
88
sources:
99
- https://github.com/grafana/loki

production/helm/loki/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# loki
22

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

55
Helm chart for Grafana Loki and Grafana Enterprise Logs supporting both simple, scalable and distributed modes.
66

production/helm/loki/templates/ingester/hpa.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
spec:
1212
scaleTargetRef:
1313
apiVersion: apps/v1
14-
kind: Statefulset
14+
kind: StatefulSet
1515
name: {{ include "loki.ingesterFullname" . }}
1616
minReplicas: {{ .Values.ingester.autoscaling.minReplicas }}
1717
maxReplicas: {{ .Values.ingester.autoscaling.maxReplicas }}

0 commit comments

Comments
 (0)