Skip to content

Commit abc4168

Browse files
committed
revert fortmatter changes
1 parent 4a790e6 commit abc4168

File tree

2 files changed

+18
-21
lines changed

2 files changed

+18
-21
lines changed

operations/helm/charts/alloy/CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,18 @@ internal API changes are not present.
1010
Unreleased
1111
----------
1212

13+
### Bug Fixes
14+
15+
- Set resource namespace correctly (@shinebayar-g)
16+
1317
0.10.0 (2024-11-13)
1418
----------
19+
1520
### Enhancements
1621

1722
- Add support for adding hostAliases to the Helm chart. (@duncan485)
1823
- Update to Grafana Alloy v1.5.0. (@thampiotr)
1924

20-
### Bug Fixes
21-
22-
- Set resource namespace correctly (@shinebayar-g)
23-
2425
0.9.2 (2024-10-18)
2526
------------------
2627

operations/helm/charts/alloy/values.yaml

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fullnameOverride: null
1313
global:
1414
image:
1515
# -- Global image registry to use if it needs to be overriden for some specific use cases (e.g local registries, custom images, ...)
16-
registry: ''
16+
registry: ""
1717

1818
# -- Optional set of global image pull secrets.
1919
pullSecrets: []
@@ -45,14 +45,14 @@ alloy:
4545
enabled: false
4646

4747
# -- Name for the Alloy cluster. Used for differentiating between clusters.
48-
name: ''
48+
name: ""
4949

5050
# -- Name for the port used for clustering, useful if running inside an Istio Mesh
5151
portName: http
5252

5353
# -- Minimum stability level of components and behavior to enable. Must be
5454
# one of "experimental", "public-preview", or "generally-available".
55-
stabilityLevel: 'generally-available'
55+
stabilityLevel: "generally-available"
5656

5757
# -- Path to where Grafana Alloy stores data (for example, the Write-Ahead Log).
5858
# By default, data is lost between reboots.
@@ -116,8 +116,7 @@ alloy:
116116
resources: {}
117117

118118
# -- Set lifecycle hooks for the Grafana Alloy container.
119-
lifecycle:
120-
{}
119+
lifecycle: {}
121120
# preStop:
122121
# exec:
123122
# command:
@@ -126,7 +125,7 @@ alloy:
126125

127126
image:
128127
# -- Grafana Alloy image registry (defaults to docker.io)
129-
registry: 'docker.io'
128+
registry: "docker.io"
130129
# -- Grafana Alloy image repository.
131130
repository: grafana/alloy
132131
# -- (string) Grafana Alloy image tag. When empty, the Chart's appVersion is
@@ -160,20 +159,20 @@ configReloader:
160159
enabled: true
161160
image:
162161
# -- Config reloader image registry (defaults to docker.io)
163-
registry: 'ghcr.io'
162+
registry: "ghcr.io"
164163
# -- Repository to get config reloader image from.
165164
repository: jimmidyson/configmap-reload
166165
# -- Tag of image to use for config reloading.
167166
tag: v0.12.0
168167
# -- SHA256 digest of image to use for config reloading (either in format "sha256:XYZ" or "XYZ"). When set, will override `configReloader.image.tag`
169-
digest: ''
168+
digest: ""
170169
# -- Override the args passed to the container.
171170
customArgs: []
172171
# -- Resource requests and limits to apply to the config reloader container.
173172
resources:
174173
requests:
175-
cpu: '1m'
176-
memory: '5Mi'
174+
cpu: "1m"
175+
memory: "5Mi"
177176
# -- Security context to apply to the Grafana configReloader container.
178177
securityContext: {}
179178

@@ -254,8 +253,7 @@ controller:
254253

255254
scaleDown:
256255
# -- List of policies to determine the scale-down behavior.
257-
policies:
258-
[]
256+
policies: []
259257
# - type: Pods
260258
# value: 4
261259
# periodSeconds: 60
@@ -266,8 +264,7 @@ controller:
266264

267265
scaleUp:
268266
# -- List of policies to determine the scale-up behavior.
269-
policies:
270-
[]
267+
policies: []
271268
# - type: Pods
272269
# value: 4
273270
# periodSeconds: 60
@@ -305,16 +302,15 @@ service:
305302
clusterIP: ''
306303
# -- Value for internal traffic policy. 'Cluster' or 'Local'
307304
internalTrafficPolicy: Cluster
308-
annotations:
309-
{}
305+
annotations: {}
310306
# cloud.google.com/load-balancer-type: Internal
311307

312308
serviceMonitor:
313309
enabled: false
314310
# -- Additional labels for the service monitor.
315311
additionalLabels: {}
316312
# -- Scrape interval. If not set, the Prometheus default scrape interval is used.
317-
interval: ''
313+
interval: ""
318314
# -- MetricRelabelConfigs to apply to samples after scraping, but before ingestion.
319315
# ref: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#relabelconfig
320316
metricRelabelings: []

0 commit comments

Comments
 (0)