Skip to content

Commit 64d1423

Browse files
Update Helm release loki to v6.44.0 (#1186)
Co-authored-by: botty-mcbottington[bot] <168950816+botty-mcbottington[bot]@users.noreply.github.com>
1 parent ad50ec1 commit 64d1423

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

charts/charts.k

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ charts: helm.Charts = {
121121
loki: {
122122
chart = "loki"
123123
repoURL = "https://grafana.github.io/helm-charts"
124-
targetRevision = "6.43.0"
124+
targetRevision = "6.44.0"
125125
schemaGenerator = "VALUE-INFERENCE"
126126
crdGenerator = "NONE"
127127
}

charts/loki/chart.k

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ schema Chart(helm.Chart):
1414
values : Values | any, optional
1515
chart : str, required, default is "loki"
1616
repoURL : str, required, default is "https://grafana.github.io/helm-charts"
17-
targetRevision : str, optional, default is "6.43.0"
17+
targetRevision : str, optional, default is "6.44.0"
1818
"""
1919
values?: Values | any
2020
chart: str = "loki"
2121
repoURL: str = "https://grafana.github.io/helm-charts"
22-
targetRevision?: str = "6.43.0"
22+
targetRevision?: str = "6.44.0"
2323

charts/loki/values.schema.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4076,7 +4076,7 @@
40764076
"type": "string"
40774077
},
40784078
"tag": {
4079-
"default": "3.5.5",
4079+
"default": "3.5.7",
40804080
"description": "Docker image tag",
40814081
"required": [],
40824082
"title": "tag",
@@ -14784,6 +14784,13 @@
1478414784
"title": "enableStatefulSetAutoDeletePVC",
1478514785
"type": "boolean"
1478614786
},
14787+
"enableStatefulSetRecreationForSizeChange": {
14788+
"default": false,
14789+
"description": "Enable StatefulSetRecreation for changes to PVC size.\nThis means that the StatefulSet will be deleted, recreated (with the same name) and rolled when a change to the\nPVC size is detected. That way the PVC can be resized without manual intervention.",
14790+
"required": [],
14791+
"title": "enableStatefulSetRecreationForSizeChange",
14792+
"type": "boolean"
14793+
},
1478714794
"enabled": {
1478814795
"default": true,
1478914796
"description": "Enable persistent disk",

charts/loki/values.schema.k

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3800,7 +3800,7 @@ schema ValuesEnterpriseImage:
38003800
The Docker registry
38013801
repository : str, optional, default is "grafana/enterprise-logs"
38023802
Docker image repository
3803-
tag : str, optional, default is "3.5.5"
3803+
tag : str, optional, default is "3.5.7"
38043804
Docker image tag
38053805
"""
38063806
[...str]: any
@@ -11766,6 +11766,10 @@ schema ValuesSingleBinaryPersistence:
1176611766
Annotations for volume claim
1176711767
enableStatefulSetAutoDeletePVC : bool, optional, default is True
1176811768
Enable StatefulSetAutoDeletePVC feature
11769+
enableStatefulSetRecreationForSizeChange : bool, optional, default is False
11770+
Enable StatefulSetRecreation for changes to PVC size.
11771+
This means that the StatefulSet will be deleted, recreated (with the same name) and rolled when a change to the
11772+
PVC size is detected. That way the PVC can be resized without manual intervention.
1176911773
enabled : bool, optional, default is True
1177011774
Enable persistent disk
1177111775
labels : ValuesSingleBinaryPersistenceLabels, optional
@@ -11789,6 +11793,7 @@ schema ValuesSingleBinaryPersistence:
1178911793
accessModes?: [str]
1179011794
annotations?: ValuesSingleBinaryPersistenceAnnotations
1179111795
enableStatefulSetAutoDeletePVC?: bool
11796+
enableStatefulSetRecreationForSizeChange?: bool
1179211797
enabled?: bool
1179311798
labels?: ValuesSingleBinaryPersistenceLabels
1179411799
selector?: any

0 commit comments

Comments
 (0)