Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update alloy chart version to 0.7.0 #9

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions charts/meta-monitoring/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,16 @@ dependencies:
version: 6.6.2
- name: alloy
repository: https://grafana.github.io/helm-charts
version: 0.3.2
version: 0.7.0
- name: alloy
repository: https://grafana.github.io/helm-charts
version: 0.7.0
- name: alloy
repository: https://grafana.github.io/helm-charts
version: 0.7.0
- name: alloy
repository: https://grafana.github.io/helm-charts
version: 0.7.0
- name: mimir-distributed
repository: https://grafana.github.io/helm-charts
version: 5.3.0
Expand All @@ -14,5 +23,5 @@ dependencies:
- name: minio
repository: https://charts.min.io
version: 5.2.0
digest: sha256:f62b04092f6e7e89e6a427b586e4c0cbfcd54ddbd411846770ee684cf86f822a
generated: "2024-06-03T07:02:47.330637227Z"
digest: sha256:2bc48e361f730a5b87ef8c44d4c8d02fc7af34c0c46126970539157018a1b715
generated: "2024-09-25T14:56:16.839516702-05:00"
12 changes: 7 additions & 5 deletions charts/meta-monitoring/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,32 +18,34 @@ version: 1.0.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.0.1"
appVersion: "0.0.2"
dependencies:
- name: loki
repository: https://grafana.github.io/helm-charts
version: 6.6.2
condition: local.logs.enabled

- name: alloy
repository: https://grafana.github.io/helm-charts
version: 0.3.2
version: 0.7.0
alias: alloy-metrics
condition: alloy-metrics.enabled
- name: alloy
repository: https://grafana.github.io/helm-charts
version: 0.3.2
version: 0.7.0
alias: alloy-logs
condition: alloy-logs.enabled
- name: alloy
repository: https://grafana.github.io/helm-charts
version: 0.3.2
version: 0.7.0
alias: alloy-events
condition: alloy-events.enabled
- name: alloy
repository: https://grafana.github.io/helm-charts
version: 0.3.2
version: 0.7.0
alias: alloy-traces
condition: alloy-traces.enabled

- name: mimir-distributed
repository: https://grafana.github.io/helm-charts
version: 5.3.0
Expand Down
Binary file removed charts/meta-monitoring/charts/alloy-0.3.2.tgz
Binary file not shown.
Binary file added charts/meta-monitoring/charts/alloy-0.7.0.tgz
Binary file not shown.
24 changes: 23 additions & 1 deletion charts/meta-monitoring/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,16 @@ alloy-metrics:
- alloy

# Alloy Metrics deployment configuration
nameOverride: alloy-metrics
fullnameOverride: meta-monitoring-alloy-metrics

crds:
create: false

alloy:
clustering:
enabled: true
name: alloy-metrics
configMap:
create: false
name: "alloy-metrics-config"
Expand Down Expand Up @@ -120,6 +127,12 @@ alloy-logs:
- alloy

# Alloy deployment configuration
nameOverride: alloy-logs
fullnameOverride: meta-monitoring-alloy-logs

crds:
create: false

alloy:
clustering:
enabled: false
Expand All @@ -145,9 +158,13 @@ alloy-logs:
alloy-traces:
enabled: false

nameOverride: alloy-traces
fullnameOverride: meta-monitoring-alloy-traces
crds:
create: false
alloy:
clustering:
enabled: true
enabled: false
configMap:
create: false
name: "alloy-traces-config"
Expand Down Expand Up @@ -183,9 +200,14 @@ alloy-events:
- alloy

# Alloy deployment configuration
nameOverride: alloy-events
fullnameOverride: meta-monitoring-alloy-events
crds:
create: false
alloy:
clustering:
enabled: true
name: alloy-events
configMap:
create: false
name: "alloy-events-config"
Expand Down