Skip to content

Commit

Permalink
added resource samples
Browse files Browse the repository at this point in the history
Signed-off-by: xogoodnow <[email protected]>
  • Loading branch information
xogoodnow committed Dec 11, 2024
1 parent b8c3466 commit 95696fb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion operations/helm/charts/alloy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: alloy
description: 'Grafana Alloy'
type: application
version: 0.10.1
version: 0.10.2
appVersion: 'v1.5.1'
icon: https://raw.githubusercontent.com/grafana/alloy/main/docs/sources/assets/alloy_icon_orange.svg

Expand Down
4 changes: 2 additions & 2 deletions operations/helm/charts/alloy/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Grafana Alloy Helm chart

![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![Version: 0.10.1](https://img.shields.io/badge/Version-0.10.1-informational?style=flat-square) ![AppVersion: v1.5.1](https://img.shields.io/badge/AppVersion-v1.5.1-informational?style=flat-square)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![Version: 0.10.2](https://img.shields.io/badge/Version-0.10.2-informational?style=flat-square) ![AppVersion: v1.5.1](https://img.shields.io/badge/AppVersion-v1.5.1-informational?style=flat-square)

Helm chart for deploying [Grafana Alloy][] to Kubernetes.

Expand Down Expand Up @@ -64,7 +64,7 @@ useful if just using the default DaemonSet isn't sufficient.
| configReloader.image.registry | string | `"ghcr.io"` | Config reloader image registry (defaults to docker.io) |
| configReloader.image.repository | string | `"jimmidyson/configmap-reload"` | Repository to get config reloader image from. |
| configReloader.image.tag | string | `"v0.12.0"` | Tag of image to use for config reloading. |
| configReloader.resources | object | `{"requests":{"cpu":"1m","memory":"5Mi"}}` | Resource requests and limits to apply to the config reloader container. |
| configReloader.resources | object | `{}` | Resource requests and limits to apply to the config reloader container. |
| configReloader.securityContext | object | `{}` | Security context to apply to the Grafana configReloader container. |
| controller.affinity | object | `{}` | Affinity configuration for pods. |
| controller.autoscaling.enabled | bool | `false` | Creates a HorizontalPodAutoscaler for controller type deployment. |
Expand Down
18 changes: 13 additions & 5 deletions operations/helm/charts/alloy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,12 @@ alloy:

# -- Resource requests and limits to apply to the Grafana Alloy container.
resources: {}

# limits:
# cpu: "1"
# memory: "1Gi"
# requests:
# cpu: "1"
# memory: "1Gi"
# -- Set lifecycle hooks for the Grafana Alloy container.
lifecycle: {}
# preStop:
Expand Down Expand Up @@ -166,10 +171,13 @@ configReloader:
# -- 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"
resources: {}
# limits:
# cpu: "1m"
# memory: "5Mi"
# requests:
# cpu: "1m"
# memory: "5Mi"
# -- Security context to apply to the Grafana configReloader container.
securityContext: {}

Expand Down

0 comments on commit 95696fb

Please sign in to comment.