File tree Expand file tree Collapse file tree 4 files changed +22
-6
lines changed
charts/influxdb3-clustered Expand file tree Collapse file tree 4 files changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ jobs:
35
35
- name : Run chart-testing (list-changed)
36
36
id : list-changed
37
37
run : |
38
- changed=$(ct list-changed)
38
+ changed=$(ct list-changed --target-branch=master )
39
39
if [[ -n "$changed" ]]; then
40
40
echo "changed=true" >> "$GITHUB_OUTPUT"
41
41
fi
42
42
43
43
- name : Run chart-testing (lint)
44
- run : ct lint
44
+ run : ct lint --target-branch=master
45
45
46
46
- name : Create kind cluster
47
47
uses : helm/kind-action@v1
Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
type : application
3
3
4
- version : 0.1.9
4
+ version : 0.1.10
5
5
appVersion : " 20241217-1494922"
6
6
name : influxdb3-clustered
7
7
description : InfluxDB 3.0 Clustered
Original file line number Diff line number Diff line change 12
12
spec :
13
13
{{- if .Values.hostingEnvironment}}
14
14
hostingEnvironment :
15
- {{- if hasKey .Values.hostingEnvironment "eks "}}
16
- eks : {{.Values.hostingEnvironment.eks | include "mapTrim" | trim | nindent 10}}
15
+ {{- if hasKey .Values.hostingEnvironment "aws "}}
16
+ aws : {{.Values.hostingEnvironment.aws | include "mapTrim" | trim | nindent 10}}
17
17
{{- else if hasKey .Values.hostingEnvironment "openshift"}}
18
18
openshift : {{.Values.hostingEnvironment.openshift | include "mapTrim" | trim | nindent 10}}
19
19
{{- else if hasKey .Values.hostingEnvironment "gke"}}
67
67
{{- if .Values.featureFlags}}
68
68
featureFlags : {{.Values.featureFlags | toYaml | nindent 6}}
69
69
{{- end}}
70
+ {{- if .Values.observability.serviceMonitor}}
71
+ observability :
72
+ serviceMonitor :
73
+ interval : {{required "missing observability.serviceMonitor.interval" .Values.observability.serviceMonitor.interval}}
74
+ scrapeTimeout : {{required "missing observability.serviceMonitor.scrapeTimeout" .Values.observability.serviceMonitor.scrapeTimeout}}
75
+ {{- end}}
70
76
---
71
77
{{- end }}
72
78
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ operatorImageOverride: ""
16
16
skipOperator : false
17
17
18
18
hostingEnvironment : {}
19
- # eks :
19
+ # aws :
20
20
# eksRoleArn: "" # "arn:aws:iam::111111111111:role/your-influxdb-clustered-role"
21
21
# # Note: there are currently no OpenShift-specific parameters. The empty object is still required for proper function
22
22
# openshift: {}
@@ -184,6 +184,10 @@ resources:
184
184
router :
185
185
requests :
186
186
limits :
187
+ # The Catalog stores metadata related to schema information and physical locations of partitions.
188
+ catalog :
189
+ requests :
190
+ limits :
187
191
188
192
admin :
189
193
# The list of users to grant access to Clustered via influxctl
@@ -221,3 +225,9 @@ egress:
221
225
222
226
# This can be used to enable certain features that are still in testing
223
227
featureFlags : []
228
+
229
+ # Parameters to tune observability configuration, such as Prometheus ServiceMonitor's.
230
+ observability : {}
231
+ # serviceMonitor:
232
+ # interval: 10s
233
+ # scrapeTimeout: 30s
You can’t perform that action at this time.
0 commit comments