Skip to content

Commit

Permalink
revert fortmatter changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shinebayar-g committed Nov 18, 2024
1 parent 4a790e6 commit abc4168
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 21 deletions.
9 changes: 5 additions & 4 deletions operations/helm/charts/alloy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,18 @@ internal API changes are not present.
Unreleased
----------

### Bug Fixes

- Set resource namespace correctly (@shinebayar-g)

0.10.0 (2024-11-13)
----------

### Enhancements

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

### Bug Fixes

- Set resource namespace correctly (@shinebayar-g)

0.9.2 (2024-10-18)
------------------

Expand Down
30 changes: 13 additions & 17 deletions operations/helm/charts/alloy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fullnameOverride: null
global:
image:
# -- Global image registry to use if it needs to be overriden for some specific use cases (e.g local registries, custom images, ...)
registry: ''
registry: ""

# -- Optional set of global image pull secrets.
pullSecrets: []
Expand Down Expand Up @@ -45,14 +45,14 @@ alloy:
enabled: false

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

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

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

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

# -- Set lifecycle hooks for the Grafana Alloy container.
lifecycle:
{}
lifecycle: {}
# preStop:
# exec:
# command:
Expand All @@ -126,7 +125,7 @@ alloy:

image:
# -- Grafana Alloy image registry (defaults to docker.io)
registry: 'docker.io'
registry: "docker.io"
# -- Grafana Alloy image repository.
repository: grafana/alloy
# -- (string) Grafana Alloy image tag. When empty, the Chart's appVersion is
Expand Down Expand Up @@ -160,20 +159,20 @@ configReloader:
enabled: true
image:
# -- Config reloader image registry (defaults to docker.io)
registry: 'ghcr.io'
registry: "ghcr.io"
# -- Repository to get config reloader image from.
repository: jimmidyson/configmap-reload
# -- Tag of image to use for config reloading.
tag: v0.12.0
# -- SHA256 digest of image to use for config reloading (either in format "sha256:XYZ" or "XYZ"). When set, will override `configReloader.image.tag`
digest: ''
digest: ""
# -- Override the args passed to the container.
customArgs: []
# -- Resource requests and limits to apply to the config reloader container.
resources:
requests:
cpu: '1m'
memory: '5Mi'
cpu: "1m"
memory: "5Mi"
# -- Security context to apply to the Grafana configReloader container.
securityContext: {}

Expand Down Expand Up @@ -254,8 +253,7 @@ controller:

scaleDown:
# -- List of policies to determine the scale-down behavior.
policies:
[]
policies: []
# - type: Pods
# value: 4
# periodSeconds: 60
Expand All @@ -266,8 +264,7 @@ controller:

scaleUp:
# -- List of policies to determine the scale-up behavior.
policies:
[]
policies: []
# - type: Pods
# value: 4
# periodSeconds: 60
Expand Down Expand Up @@ -305,16 +302,15 @@ service:
clusterIP: ''
# -- Value for internal traffic policy. 'Cluster' or 'Local'
internalTrafficPolicy: Cluster
annotations:
{}
annotations: {}
# cloud.google.com/load-balancer-type: Internal

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

0 comments on commit abc4168

Please sign in to comment.