File tree 4 files changed +9
-1
lines changed
operations/helm/charts/alloy
4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ internal API changes are not present.
10
10
Unreleased
11
11
----------
12
12
13
+ ### Bugfixes
14
+
15
+ - Fix clustering on instances running within Istio mesh by allowing to change the name of the clustering port
16
+
13
17
0.3.0 (2024-05-14)
14
18
------------------
15
19
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ useful if just using the default DaemonSet isn't sufficient.
34
34
| Key | Type | Default | Description |
35
35
| -----| ------| ---------| -------------|
36
36
| alloy.clustering.enabled | bool | ` false ` | Deploy Alloy in a cluster to allow for load distribution. |
37
+ | alloy.clustering.portName | string | ` "http" ` | Name for the port used for clustering, useful if running inside an Istio Mesh |
37
38
| alloy.configMap.content | string | ` "" ` | Content to assign to the new ConfigMap. This is passed into ` tpl ` allowing for templating from values. |
38
39
| alloy.configMap.create | bool | ` true ` | Create a new ConfigMap for the config file. |
39
40
| alloy.configMap.key | string | ` nil ` | Key in ConfigMap to get config from. |
Original file line number Diff line number Diff line change 19
19
#
20
20
# This service should only be used for clustering, and not metric
21
21
# collection.
22
- - name : http
22
+ - name : {{ $values.clustering.portName }}
23
23
port : {{ $values.listenPort }}
24
24
targetPort : {{ $values.listenPort }}
25
25
protocol : " TCP"
Original file line number Diff line number Diff line change 41
41
# -- Deploy Alloy in a cluster to allow for load distribution.
42
42
enabled : false
43
43
44
+ # -- Name for the port used for clustering, useful if running inside an Istio Mesh
45
+ portName : http
46
+
44
47
# -- Minimum stability level of components and behavior to enable. Must be
45
48
# one of "experimental", "public-preview", or "generally-available".
46
49
stabilityLevel : " generally-available"
You can’t perform that action at this time.
0 commit comments