Skip to content

Commit 1c1cc02

Browse files
committed
Increment GLAuth Helm chart version to 0.3.16, update sampleLimit and targetLimit types in values.schema.json to allow null values, and remove default null values from values.yaml for improved configuration flexibility.
1 parent 588d121 commit 1c1cc02

3 files changed

Lines changed: 3 additions & 9 deletions

File tree

charts/glauth/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.3.15
18+
version: 0.3.16
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/glauth/values.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -789,12 +789,12 @@
789789
"default": []
790790
},
791791
"sampleLimit": {
792-
"type": "integer",
792+
"type": ["integer", "null"],
793793
"description": "Sample limit for metrics collection",
794794
"minimum": 1
795795
},
796796
"targetLimit": {
797-
"type": "integer",
797+
"type": ["integer", "null"],
798798
"description": "Target limit for metrics collection",
799799
"minimum": 1
800800
},

charts/glauth/values.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,6 @@ serviceMonitor:
248248
# Pod target labels for Prometheus Operator
249249
podTargetLabels: []
250250

251-
# Sample limit for Prometheus Operator
252-
sampleLimit: null
253-
254-
# Target limit for Prometheus Operator
255-
targetLimit: null
256-
257251
# Additional labels for Prometheus Operator
258252
additionalLabels: {}
259253

0 commit comments

Comments
 (0)