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

[grafana] feat: fail when users store secrets in plaintext #2867

Merged

Conversation

DerekTBrown
Copy link
Contributor

What does this PR do?

  • There are numerous properties within grafana.ini that should be secret.
  • Users might try to provide these properties by setting them in helm values. This would result in secrets being leaked, since the contents of grafana.ini is stored as a configmap.
  • This PR adds assertions that users do not provide explicit secrets into the grafana.ini configmap.

Alternates considered:

  • We could "pluck" these values out of the configmap and store them in a secret. We could then use envFrom or some other mechanism to inject them into grafana.ini. However, this might lead to confusion on the part of users, who may expect all the values to be put into the grafana.ini verbatim.

@CLAassistant
Copy link

CLAassistant commented Dec 21, 2023

CLA assistant check
All committers have signed the CLA.

Copy link
Collaborator

@zanhsieh zanhsieh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@DerekTBrown
Thanks for the contribution. Can you bump the version in Chart.yaml and sign DCO too?

@zanhsieh zanhsieh changed the title feat: fail when users store secrets in plaintext [grafana] feat: fail when users store secrets in plaintext Dec 28, 2023
DerekTBrown and others added 2 commits January 4, 2024 14:33
Signed-off-by: Derek Brown <debrown@plaid.com>
Signed-off-by: Derek Brown <debrown@plaid.com>
@DerekTBrown DerekTBrown force-pushed the derektbrown_feat_secret_leak_detection branch from d644643 to 6725f74 Compare January 4, 2024 22:34
Copy link
Collaborator

@Xtigyro Xtigyro left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@DerekTBrown Please resolve the conflicts.

@Xtigyro Xtigyro merged commit c8fc645 into grafana:main Jan 10, 2024
6 checks passed
@z0rc
Copy link
Contributor

z0rc commented Jan 10, 2024

@joeblubaugh
Copy link

Isn't this likely to break a number of grafana deployments in the wild? Is there an ability to disable this check?

@goraxe
Copy link

goraxe commented Jan 11, 2024

Just a point of etiquette for merging changes that change default behavior please bump the major version of the chart (ie indicate a breaking change). I have renovate running here which automerges minor and patch level. Major get manually approved after reading the changelog.

There is an opt out switch introduced by the change but it defaults to on

Some docs might also help as it looks like the current README was not updated and no test cases were included. My initial attempt was to switch the keys in the generic oauth section to the file params however this failed as the path was still the same so this leaves the awkward question of what is the 'correct' way to pass in the variable expansion through the grafana.ini values map.

I had to flip the switch to off to have the chart render in argocd with supplying the values through a secret and parameter expansion.

@afreyermuth98
Copy link

afreyermuth98 commented Jan 11, 2024

To agree with @goraxe , we for example need the env variables names to do so.
For example I achieved to migrate my database.password to the env variable named GF_DATABASE_PASSWORD but I don't have any idea / documentation on the auth.google.client_id|client_secret for example
And yeah i'm putting them as file secret ref as it's recommended on the documentation and it's "recognized" as sensitive even if it's not :

grafana.ini
  auth.google:
    client_id: $__file{/etc/secrets/auth_google/client_id}
    client_secret: $__file{/etc/secrets/auth_google/client_secret}

@Moglum
Copy link

Moglum commented Jan 11, 2024

The correct syntax of the env variables is described here: https://grafana.com/docs/grafana/latest/setup-grafana/configure-grafana/#override-configuration-with-environment-variables

so in your case

  auth.google:
    client_id: $__file{/etc/secrets/auth_google/client_id}
    client_secret: $__file{/etc/secrets/auth_google/client_secret}

can be provided as the following env variables

GF_AUTH_GOOGLE_CLIENT_ID: foo
GF_AUTH_GOOGLE_CLIENT_SECRET: bar

for example via the envRenderSecret key in Grafana Helm chart values -

envRenderSecret: {}

@afreyermuth98
Copy link

Thank you !
Just a question about that, what is the point to make the data sensitive inside grafana.ini and not in env, it's just shifting the problem no ?

@Moglum
Copy link

Moglum commented Jan 11, 2024

I have no idea. I'm only here because our gitops pipelines started to fail for no reason. We had a static non-sensitive string in there, similar to what you shared client_secret: $__file{/etc/secrets/auth_generic_oauth_secret/client_secret} and the mounted/referenced Secret was already handled with Sealed Secrets.

So, I've yet to the see point behind this breaking change.

spiceratops referenced this pull request in spiceratops/k8s-gitops Jan 11, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [grafana](https://grafana.com)
([source](https://togithub.com/grafana/helm-charts)) | minor | `7.0.22`
-> `7.1.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>grafana/helm-charts (grafana)</summary>

###
[`v7.1.0`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.1.0)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.22...grafana-7.1.0)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] feat: fail when users store secrets in plaintext by
[@&#8203;DerekTBrown](https://togithub.com/DerekTBrown) in
[https://github.com/grafana/helm-charts/pull/2867](https://togithub.com/grafana/helm-charts/pull/2867)

#### New Contributors

- [@&#8203;DerekTBrown](https://togithub.com/DerekTBrown) made their
first contribution in
[https://github.com/grafana/helm-charts/pull/2867](https://togithub.com/grafana/helm-charts/pull/2867)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.22...grafana-7.1.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjguMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
coolguy1771 referenced this pull request in coolguy1771/home-ops Jan 13, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [grafana](https://grafana.com)
([source](https://togithub.com/grafana/helm-charts)) | minor | `7.0.21`
-> `7.2.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>grafana/helm-charts (grafana)</summary>

###
[`v7.2.0`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.0)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.1.0...grafana-7.2.0)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Support Datasource sidecar having envValueFrom by
[@&#8203;mtenrero](https://togithub.com/mtenrero) in
[https://github.com/grafana/helm-charts/pull/2862](https://togithub.com/grafana/helm-charts/pull/2862)

#### New Contributors

- [@&#8203;mtenrero](https://togithub.com/mtenrero) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2862](https://togithub.com/grafana/helm-charts/pull/2862)

**Full Changelog**:
grafana/helm-charts@helm-k6-operator-3.4.0...grafana-7.2.0

###
[`v7.1.0`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.1.0)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.22...grafana-7.1.0)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] feat: fail when users store secrets in plaintext by
[@&#8203;DerekTBrown](https://togithub.com/DerekTBrown) in
[https://github.com/grafana/helm-charts/pull/2867](https://togithub.com/grafana/helm-charts/pull/2867)

#### New Contributors

- [@&#8203;DerekTBrown](https://togithub.com/DerekTBrown) made their
first contribution in
[https://github.com/grafana/helm-charts/pull/2867](https://togithub.com/grafana/helm-charts/pull/2867)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.22...grafana-7.1.0

###
[`v7.0.22`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.22)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.21...grafana-7.0.22)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] app version to 10.2.3 by
[@&#8203;akselleirv](https://togithub.com/akselleirv) in
[https://github.com/grafana/helm-charts/pull/2879](https://togithub.com/grafana/helm-charts/pull/2879)

#### New Contributors

- [@&#8203;akselleirv](https://togithub.com/akselleirv) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2879](https://togithub.com/grafana/helm-charts/pull/2879)

**Full Changelog**:
grafana/helm-charts@tempo-distributed-1.7.4...grafana-7.0.22

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: lumiere-bot[bot] <98047013+lumiere-bot[bot]@users.noreply.github.com>
@YvesZelros
Copy link
Contributor

This PR will allow secret reference.

zachariahmiller referenced this pull request in defenseunicorns/uds-core Jan 23, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/curlimages/curl](https://togithub.com/curl/curl-container)
| major | `7.85.0` -> `8.5.0` |
| docker.io/grafana/grafana | minor | `10.1.5` -> `10.3.1` |
| docker.io/library/busybox | minor | `1.31.1` -> `1.36.1` |
|
[ghcr.io/kiwigrid/k8s-sidecar](https://togithub.com/kiwigrid/k8s-sidecar)
| patch | `1.25.2` -> `1.25.3` |
| [grafana](https://grafana.com)
([source](https://togithub.com/grafana/helm-charts)) | minor | `7.0.6`
-> `7.2.4` |
|
[registry1.dso.mil/ironbank/kiwigrid/k8s-sidecar](https://togithub.com/kiwigrid/k8s-sidecar)
([source](https://repo1.dso.mil/dsop/kiwigrid/k8s-sidecar)) | patch |
`1.25.2` -> `1.25.3` |
|
[registry1.dso.mil/ironbank/opensource/grafana/grafana](https://togithub.com/grafana/grafana)
([source](https://repo1.dso.mil/dsop/opensource/grafana/grafana)) |
patch | `10.2.2` -> `10.2.3` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>curl/curl-container (docker.io/curlimages/curl)</summary>

###
[`v8.5.0`](https://togithub.com/curl/curl-container/blob/HEAD/CHANGELOG.md#850-1---2023-01-19)

[Compare
Source](https://togithub.com/curl/curl-container/compare/8.4.0...8.5.0)

##### Changed

-   add libpsl
-   bump to alpine 3.19.0

###
[`v8.4.0`](https://togithub.com/curl/curl-container/blob/HEAD/CHANGELOG.md#840---2023-10-11)

[Compare
Source](https://togithub.com/curl/curl-container/compare/8.3.0...8.4.0)

##### Changed

-   bump to curl 8.4.0
-   bump to alpine 3.18.4
-   build enabled --with-gssapi

###
[`v8.3.0`](https://togithub.com/curl/curl-container/releases/tag/8.3.0)

[Compare
Source](https://togithub.com/curl/curl-container/compare/8.2.1...8.3.0)

#### \[8.3.1] - 2023-09-13

##### Changed

-   bump to curl 8.3.0
-   bump to alpine 3.18.3

###
[`v8.2.1`](https://togithub.com/curl/curl-container/blob/HEAD/CHANGELOG.md#821---2023-07-26)

[Compare
Source](https://togithub.com/curl/curl-container/compare/8.2.0...8.2.1)

##### Changed

-   bump to curl 8.2.1

###
[`v8.2.0`](https://togithub.com/curl/curl-container/blob/HEAD/CHANGELOG.md#820---2023-07-19)

[Compare
Source](https://togithub.com/curl/curl-container/compare/8.1.2...8.2.0)

##### Changed

-   bump to curl 8.2.0
-   bump to alpine 3.18.2

###
[`v8.1.2`](https://togithub.com/curl/curl-container/blob/HEAD/CHANGELOG.md#812-5---2023-06-14)

##### Changed

-   added clamav and grype to security scan
-   added user working directory
-   skimmed apk cache
- added back arches (arm64, etc) by fixing issue
[#&#8203;3](https://togithub.com/curl/curl-container/issues/3)

</details>

<details>
<summary>kiwigrid/k8s-sidecar (ghcr.io/kiwigrid/k8s-sidecar)</summary>

###
[`v1.25.3`](https://togithub.com/kiwigrid/k8s-sidecar/releases/tag/1.25.3)

[Compare
Source](https://togithub.com/kiwigrid/k8s-sidecar/compare/1.25.2...1.25.3)

#### 💬 Other

-   Remove misleading doc for REQ_SKIP_TLS_VERIFY
- PR:
[#&#8203;310](https://togithub.com/kiwigrid/k8s-sidecar/issues/310)

#### 📦 Dependencies

-   build(deps): bump kubernetes from 27.2.0 to 28.1.0 in /src
- PR:
[#&#8203;308](https://togithub.com/kiwigrid/k8s-sidecar/issues/308)

</details>

<details>
<summary>grafana/helm-charts (grafana)</summary>

###
[`v7.2.4`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.4)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.3...grafana-7.2.4)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] fix Chart.yaml - fix incorrect license
[#&#8203;2882](https://togithub.com/grafana/helm-charts/issues/2882) by
[@&#8203;arukiidou](https://togithub.com/arukiidou) in
[https://github.com/grafana/helm-charts/pull/2909](https://togithub.com/grafana/helm-charts/pull/2909)

**Full Changelog**:
grafana/helm-charts@loki-stack-2.10.1...grafana-7.2.4

###
[`v7.2.3`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.3)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.2...grafana-7.2.3)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Allow to customize empty dir volume by
[@&#8203;YvesZelros](https://togithub.com/YvesZelros) in
[https://github.com/grafana/helm-charts/pull/2911](https://togithub.com/grafana/helm-charts/pull/2911)

#### New Contributors

- [@&#8203;YvesZelros](https://togithub.com/YvesZelros) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2911](https://togithub.com/grafana/helm-charts/pull/2911)

**Full Changelog**:
grafana/helm-charts@grafana-7.2.2...grafana-7.2.3

###
[`v7.2.2`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.2)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.1...grafana-7.2.2)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Don't fail assertNoLeakedSecrets check if a variable
expansion operator is found by
[@&#8203;bdalpe](https://togithub.com/bdalpe) in
[https://github.com/grafana/helm-charts/pull/2904](https://togithub.com/grafana/helm-charts/pull/2904)

#### New Contributors

- [@&#8203;bdalpe](https://togithub.com/bdalpe) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2904](https://togithub.com/grafana/helm-charts/pull/2904)

**Full Changelog**:
grafana/helm-charts@tempo-distributed-1.8.0...grafana-7.2.2

###
[`v7.2.1`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.1)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.0...grafana-7.2.1)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] fix secret datasources/notifiers rendering by
[@&#8203;JordanGoasdoue](https://togithub.com/JordanGoasdoue) in
[https://github.com/grafana/helm-charts/pull/2895](https://togithub.com/grafana/helm-charts/pull/2895)

#### New Contributors

- [@&#8203;JordanGoasdoue](https://togithub.com/JordanGoasdoue) made
their first contribution in
[https://github.com/grafana/helm-charts/pull/2895](https://togithub.com/grafana/helm-charts/pull/2895)

**Full Changelog**:
grafana/helm-charts@grafana-7.2.0...grafana-7.2.1

###
[`v7.2.0`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.0)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.1.0...grafana-7.2.0)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Support Datasource sidecar having envValueFrom by
[@&#8203;mtenrero](https://togithub.com/mtenrero) in
[https://github.com/grafana/helm-charts/pull/2862](https://togithub.com/grafana/helm-charts/pull/2862)

#### New Contributors

- [@&#8203;mtenrero](https://togithub.com/mtenrero) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2862](https://togithub.com/grafana/helm-charts/pull/2862)

**Full Changelog**:
grafana/helm-charts@helm-k6-operator-3.4.0...grafana-7.2.0

###
[`v7.1.0`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.1.0)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.22...grafana-7.1.0)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] feat: fail when users store secrets in plaintext by
[@&#8203;DerekTBrown](https://togithub.com/DerekTBrown) in
[https://github.com/grafana/helm-charts/pull/2867](https://togithub.com/grafana/helm-charts/pull/2867)

#### New Contributors

- [@&#8203;DerekTBrown](https://togithub.com/DerekTBrown) made their
first contribution in
[https://github.com/grafana/helm-charts/pull/2867](https://togithub.com/grafana/helm-charts/pull/2867)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.22...grafana-7.1.0

###
[`v7.0.22`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.22)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.21...grafana-7.0.22)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] app version to 10.2.3 by
[@&#8203;akselleirv](https://togithub.com/akselleirv) in
[https://github.com/grafana/helm-charts/pull/2879](https://togithub.com/grafana/helm-charts/pull/2879)

#### New Contributors

- [@&#8203;akselleirv](https://togithub.com/akselleirv) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2879](https://togithub.com/grafana/helm-charts/pull/2879)

**Full Changelog**:
grafana/helm-charts@tempo-distributed-1.7.4...grafana-7.0.22

###
[`v7.0.21`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.21)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.20...grafana-7.0.21)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Quote hostname in ingress.yaml by
[@&#8203;msadiq058](https://togithub.com/msadiq058) in
[https://github.com/grafana/helm-charts/pull/2871](https://togithub.com/grafana/helm-charts/pull/2871)

#### New Contributors

- [@&#8203;msadiq058](https://togithub.com/msadiq058) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2871](https://togithub.com/grafana/helm-charts/pull/2871)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.20...grafana-7.0.21

###
[`v7.0.20`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.20)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.19...grafana-7.0.20)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Added support for loadBalancerClass by
[@&#8203;Sheikh-Abubaker](https://togithub.com/Sheikh-Abubaker) in
[https://github.com/grafana/helm-charts/pull/2790](https://togithub.com/grafana/helm-charts/pull/2790)

**Full Changelog**:
grafana/helm-charts@grafana-agent-0.30.0...grafana-7.0.20

###
[`v7.0.19`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.19)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.18...grafana-7.0.19)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Updates comments in values.yaml to align
extraVolumes.hostP… by [@&#8203;mheers](https://togithub.com/mheers) in
[https://github.com/grafana/helm-charts/pull/2856](https://togithub.com/grafana/helm-charts/pull/2856)

#### New Contributors

- [@&#8203;mheers](https://togithub.com/mheers) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2856](https://togithub.com/grafana/helm-charts/pull/2856)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.18...grafana-7.0.19

###
[`v7.0.18`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.18)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.17...grafana-7.0.18)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] fix: Change sidecar.alerts.initDatasources to
sidecar.alerts.initAlerts by
[@&#8203;kvanzuijlen](https://togithub.com/kvanzuijlen) in
[https://github.com/grafana/helm-charts/pull/2789](https://togithub.com/grafana/helm-charts/pull/2789)

**Full Changelog**:
grafana/helm-charts@k8s-monitoring-0.7.0...grafana-7.0.18

###
[`v7.0.17`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.17)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.16...grafana-7.0.17)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Document extraVolumes by
[@&#8203;stephan2012](https://togithub.com/stephan2012) in
[https://github.com/grafana/helm-charts/pull/2823](https://togithub.com/grafana/helm-charts/pull/2823)

#### New Contributors

- [@&#8203;stephan2012](https://togithub.com/stephan2012) made their
first contribution in
[https://github.com/grafana/helm-charts/pull/2823](https://togithub.com/grafana/helm-charts/pull/2823)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.16...grafana-7.0.17

###
[`v7.0.16`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.16)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.15...grafana-7.0.16)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Avoid unnecessary pod restart on each helm chart version by
[@&#8203;jkroepke](https://togithub.com/jkroepke) in
[https://github.com/grafana/helm-charts/pull/2834](https://togithub.com/grafana/helm-charts/pull/2834)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.15...grafana-7.0.16

###
[`v7.0.15`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.15)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.14...grafana-7.0.15)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Allow setting dns config for pod template by
[@&#8203;weikinhuang](https://togithub.com/weikinhuang) in
[https://github.com/grafana/helm-charts/pull/2835](https://togithub.com/grafana/helm-charts/pull/2835)

#### New Contributors

- [@&#8203;weikinhuang](https://togithub.com/weikinhuang) made their
first contribution in
[https://github.com/grafana/helm-charts/pull/2835](https://togithub.com/grafana/helm-charts/pull/2835)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.14...grafana-7.0.15

###
[`v7.0.14`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.14)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.11...grafana-7.0.14)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] - Add support for templating in ServiceMonitor labels by
[@&#8203;Allex1](https://togithub.com/Allex1) in
[https://github.com/grafana/helm-charts/pull/2774](https://togithub.com/grafana/helm-charts/pull/2774)

**Full Changelog**:
grafana/helm-charts@helm-k6-operator-3.3.0...grafana-7.0.14

###
[`v7.0.11`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.11)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.10...grafana-7.0.11)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Update Grafana to v10.2.2 by
[@&#8203;Footur](https://togithub.com/Footur) in
[https://github.com/grafana/helm-charts/pull/2795](https://togithub.com/grafana/helm-charts/pull/2795)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.10...grafana-7.0.11

###
[`v7.0.10`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.10)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.9...grafana-7.0.10)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Mount configSecret by
[@&#8203;YuleZ](https://togithub.com/YuleZ) in
[https://github.com/grafana/helm-charts/pull/2782](https://togithub.com/grafana/helm-charts/pull/2782)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.9...grafana-7.0.10

###
[`v7.0.9`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.9)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.8...grafana-7.0.9)

The leading tool for querying and visualizing time series and metrics.

##### What's Changed

- \[grafana] Docs: improve clarity of alert provisioning docs by
[@&#8203;jwreford99](https://togithub.com/jwreford99) in
[https://github.com/grafana/helm-charts/pull/2792](https://togithub.com/grafana/helm-charts/pull/2792)

##### New Contributors

- [@&#8203;jwreford99](https://togithub.com/jwreford99) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2792](https://togithub.com/grafana/helm-charts/pull/2792)

**Full Changelog**:
grafana/helm-charts@tempo-distributed-1.7.1...grafana-7.0.9

###
[`v7.0.8`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.8)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.6...grafana-7.0.8)

The leading tool for querying and visualizing time series and metrics.

##### What's Changed

- \[grafana] feat(networkpolicy): specify egress destination by
[@&#8203;LeoFVO](https://togithub.com/LeoFVO) in
[https://github.com/grafana/helm-charts/pull/2776](https://togithub.com/grafana/helm-charts/pull/2776)

##### New Contributors

- [@&#8203;LeoFVO](https://togithub.com/LeoFVO) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2776](https://togithub.com/grafana/helm-charts/pull/2776)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.6...grafana-7.0.8

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/defenseunicorns/uds-core).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@cwrau
Copy link
Contributor

cwrau commented Jan 31, 2024

This was a breaking change and therefor should've been a major release, as this breaks existing configuration.

cwrau added a commit to teutonet/teutonet-helm-charts that referenced this pull request Jan 31, 2024
Closes #751, see grafana/helm-charts#2867
The update to kube-prometheus-stack is necessary, otherwise
grafana/helm-charts#2910 is not included
lambchop4prez referenced this pull request in lambchop4prez/network Apr 7, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [grafana](https://grafana.com)
([source](https://togithub.com/grafana/helm-charts)) | minor | `7.0.3`
-> `7.3.7` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>grafana/helm-charts (grafana)</summary>

###
[`v7.3.7`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.3.7)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.3.6...grafana-7.3.7)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Update to version 10.4.0 by
[@&#8203;terop](https://togithub.com/terop) in
[https://github.com/grafana/helm-charts/pull/3010](https://togithub.com/grafana/helm-charts/pull/3010)

**Full Changelog**:
grafana/helm-charts@k8s-monitoring-0.11.2...grafana-7.3.7

###
[`v7.3.6`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.3.6)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.3.5...grafana-7.3.6)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] bump kiwigrid/k8s-sidecar to 1.26.1 by
[@&#8203;kvanzuijlen](https://togithub.com/kvanzuijlen) in
[https://github.com/grafana/helm-charts/pull/3011](https://togithub.com/grafana/helm-charts/pull/3011)

**Full Changelog**:
grafana/helm-charts@grafana-7.3.5...grafana-7.3.6

###
[`v7.3.5`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.3.5)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.3.4...grafana-7.3.5)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] bump kiwigrid/k8s-sidecar version to 1.26.0 by
[@&#8203;kvanzuijlen](https://togithub.com/kvanzuijlen) in
[https://github.com/grafana/helm-charts/pull/2993](https://togithub.com/grafana/helm-charts/pull/2993)

**Full Changelog**:
grafana/helm-charts@grafana-7.3.4...grafana-7.3.5

###
[`v7.3.4`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.3.4)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.3.3...grafana-7.3.4)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Add `serviceAccount.automountServiceAccountToken` and
document `automountServiceAccountToken` by
[@&#8203;jkroepke](https://togithub.com/jkroepke) in
[https://github.com/grafana/helm-charts/pull/2997](https://togithub.com/grafana/helm-charts/pull/2997)

**Full Changelog**:
grafana/helm-charts@grafana-agent-0.36.0...grafana-7.3.4

###
[`v7.3.3`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.3.3)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.3.2...grafana-7.3.3)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Add value for pod.spec.automountServiceAccountToken by
[@&#8203;jkroepke](https://togithub.com/jkroepke) in
[https://github.com/grafana/helm-charts/pull/2991](https://togithub.com/grafana/helm-charts/pull/2991)

**Full Changelog**:
grafana/helm-charts@loki-distributed-0.78.3...grafana-7.3.3

###
[`v7.3.2`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.3.2)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.3.1...grafana-7.3.2)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] autoMount set to false in values.yaml by
[@&#8203;Sheikh-Abubaker](https://togithub.com/Sheikh-Abubaker) in
[https://github.com/grafana/helm-charts/pull/2977](https://togithub.com/grafana/helm-charts/pull/2977)

**Full Changelog**:
grafana/helm-charts@grafana-7.3.1...grafana-7.3.2

###
[`v7.3.1`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.3.1)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.3.0...grafana-7.3.1)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Update Grafana to version 10.3.3 by
[@&#8203;Footur](https://togithub.com/Footur) in
[https://github.com/grafana/helm-charts/pull/2965](https://togithub.com/grafana/helm-charts/pull/2965)

**Full Changelog**:
grafana/helm-charts@grafana-agent-0.33.0...grafana-7.3.1

###
[`v7.3.0`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.3.0)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.5...grafana-7.3.0)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] app version to 10.3.1 by
[@&#8203;nazimisik](https://togithub.com/nazimisik) in
[https://github.com/grafana/helm-charts/pull/2936](https://togithub.com/grafana/helm-charts/pull/2936)

#### New Contributors

- [@&#8203;nazimisik](https://togithub.com/nazimisik) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2936](https://togithub.com/grafana/helm-charts/pull/2936)

**Full Changelog**:
grafana/helm-charts@promtail-6.15.5...grafana-7.3.0

###
[`v7.2.5`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.5)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.4...grafana-7.2.5)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Allow prefix field in envFrom entries by
[@&#8203;mario-steinhoff-gcx](https://togithub.com/mario-steinhoff-gcx)
in
[https://github.com/grafana/helm-charts/pull/2934](https://togithub.com/grafana/helm-charts/pull/2934)

**Full Changelog**:
grafana/helm-charts@helm-loki-5.42.0...grafana-7.2.5

###
[`v7.2.4`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.4)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.3...grafana-7.2.4)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] fix Chart.yaml - fix incorrect license
[#&#8203;2882](https://togithub.com/grafana/helm-charts/issues/2882) by
[@&#8203;arukiidou](https://togithub.com/arukiidou) in
[https://github.com/grafana/helm-charts/pull/2909](https://togithub.com/grafana/helm-charts/pull/2909)

**Full Changelog**:
grafana/helm-charts@loki-stack-2.10.1...grafana-7.2.4

###
[`v7.2.3`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.3)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.2...grafana-7.2.3)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Allow to customize empty dir volume by
[@&#8203;YvesZelros](https://togithub.com/YvesZelros) in
[https://github.com/grafana/helm-charts/pull/2911](https://togithub.com/grafana/helm-charts/pull/2911)

#### New Contributors

- [@&#8203;YvesZelros](https://togithub.com/YvesZelros) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2911](https://togithub.com/grafana/helm-charts/pull/2911)

**Full Changelog**:
grafana/helm-charts@grafana-7.2.2...grafana-7.2.3

###
[`v7.2.2`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.2)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.1...grafana-7.2.2)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Don't fail assertNoLeakedSecrets check if a variable
expansion operator is found by
[@&#8203;bdalpe](https://togithub.com/bdalpe) in
[https://github.com/grafana/helm-charts/pull/2904](https://togithub.com/grafana/helm-charts/pull/2904)

#### New Contributors

- [@&#8203;bdalpe](https://togithub.com/bdalpe) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2904](https://togithub.com/grafana/helm-charts/pull/2904)

**Full Changelog**:
grafana/helm-charts@tempo-distributed-1.8.0...grafana-7.2.2

###
[`v7.2.1`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.1)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.0...grafana-7.2.1)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] fix secret datasources/notifiers rendering by
[@&#8203;JordanGoasdoue](https://togithub.com/JordanGoasdoue) in
[https://github.com/grafana/helm-charts/pull/2895](https://togithub.com/grafana/helm-charts/pull/2895)

#### New Contributors

- [@&#8203;JordanGoasdoue](https://togithub.com/JordanGoasdoue) made
their first contribution in
[https://github.com/grafana/helm-charts/pull/2895](https://togithub.com/grafana/helm-charts/pull/2895)

**Full Changelog**:
grafana/helm-charts@grafana-7.2.0...grafana-7.2.1

###
[`v7.2.0`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.0)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.1.0...grafana-7.2.0)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Support Datasource sidecar having envValueFrom by
[@&#8203;mtenrero](https://togithub.com/mtenrero) in
[https://github.com/grafana/helm-charts/pull/2862](https://togithub.com/grafana/helm-charts/pull/2862)

#### New Contributors

- [@&#8203;mtenrero](https://togithub.com/mtenrero) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2862](https://togithub.com/grafana/helm-charts/pull/2862)

**Full Changelog**:
grafana/helm-charts@helm-k6-operator-3.4.0...grafana-7.2.0

###
[`v7.1.0`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.1.0)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.22...grafana-7.1.0)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] feat: fail when users store secrets in plaintext by
[@&#8203;DerekTBrown](https://togithub.com/DerekTBrown) in
[https://github.com/grafana/helm-charts/pull/2867](https://togithub.com/grafana/helm-charts/pull/2867)

#### New Contributors

- [@&#8203;DerekTBrown](https://togithub.com/DerekTBrown) made their
first contribution in
[https://github.com/grafana/helm-charts/pull/2867](https://togithub.com/grafana/helm-charts/pull/2867)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.22...grafana-7.1.0

###
[`v7.0.22`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.22)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.21...grafana-7.0.22)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] app version to 10.2.3 by
[@&#8203;akselleirv](https://togithub.com/akselleirv) in
[https://github.com/grafana/helm-charts/pull/2879](https://togithub.com/grafana/helm-charts/pull/2879)

#### New Contributors

- [@&#8203;akselleirv](https://togithub.com/akselleirv) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2879](https://togithub.com/grafana/helm-charts/pull/2879)

**Full Changelog**:
grafana/helm-charts@tempo-distributed-1.7.4...grafana-7.0.22

###
[`v7.0.21`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.21)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.20...grafana-7.0.21)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Quote hostname in ingress.yaml by
[@&#8203;msadiq058](https://togithub.com/msadiq058) in
[https://github.com/grafana/helm-charts/pull/2871](https://togithub.com/grafana/helm-charts/pull/2871)

#### New Contributors

- [@&#8203;msadiq058](https://togithub.com/msadiq058) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2871](https://togithub.com/grafana/helm-charts/pull/2871)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.20...grafana-7.0.21

###
[`v7.0.20`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.20)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.19...grafana-7.0.20)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Added support for loadBalancerClass by
[@&#8203;Sheikh-Abubaker](https://togithub.com/Sheikh-Abubaker) in
[https://github.com/grafana/helm-charts/pull/2790](https://togithub.com/grafana/helm-charts/pull/2790)

**Full Changelog**:
grafana/helm-charts@grafana-agent-0.30.0...grafana-7.0.20

###
[`v7.0.19`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.19)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.18...grafana-7.0.19)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Updates comments in values.yaml to align
extraVolumes.hostP… by [@&#8203;mheers](https://togithub.com/mheers) in
[https://github.com/grafana/helm-charts/pull/2856](https://togithub.com/grafana/helm-charts/pull/2856)

#### New Contributors

- [@&#8203;mheers](https://togithub.com/mheers) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2856](https://togithub.com/grafana/helm-charts/pull/2856)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.18...grafana-7.0.19

###
[`v7.0.18`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.18)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.17...grafana-7.0.18)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] fix: Change sidecar.alerts.initDatasources to
sidecar.alerts.initAlerts by
[@&#8203;kvanzuijlen](https://togithub.com/kvanzuijlen) in
[https://github.com/grafana/helm-charts/pull/2789](https://togithub.com/grafana/helm-charts/pull/2789)

**Full Changelog**:
grafana/helm-charts@k8s-monitoring-0.7.0...grafana-7.0.18

###
[`v7.0.17`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.17)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.16...grafana-7.0.17)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Document extraVolumes by
[@&#8203;stephan2012](https://togithub.com/stephan2012) in
[https://github.com/grafana/helm-charts/pull/2823](https://togithub.com/grafana/helm-charts/pull/2823)

#### New Contributors

- [@&#8203;stephan2012](https://togithub.com/stephan2012) made their
first contribution in
[https://github.com/grafana/helm-charts/pull/2823](https://togithub.com/grafana/helm-charts/pull/2823)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.16...grafana-7.0.17

###
[`v7.0.16`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.16)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.15...grafana-7.0.16)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Avoid unnecessary pod restart on each helm chart version by
[@&#8203;jkroepke](https://togithub.com/jkroepke) in
[https://github.com/grafana/helm-charts/pull/2834](https://togithub.com/grafana/helm-charts/pull/2834)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.15...grafana-7.0.16

###
[`v7.0.15`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.15)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.14...grafana-7.0.15)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Allow setting dns config for pod template by
[@&#8203;weikinhuang](https://togithub.com/weikinhuang) in
[https://github.com/grafana/helm-charts/pull/2835](https://togithub.com/grafana/helm-charts/pull/2835)

#### New Contributors

- [@&#8203;weikinhuang](https://togithub.com/weikinhuang) made their
first contribution in
[https://github.com/grafana/helm-charts/pull/2835](https://togithub.com/grafana/helm-charts/pull/2835)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.14...grafana-7.0.15

###
[`v7.0.14`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.14)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.11...grafana-7.0.14)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] - Add support for templating in ServiceMonitor labels by
[@&#8203;Allex1](https://togithub.com/Allex1) in
[https://github.com/grafana/helm-charts/pull/2774](https://togithub.com/grafana/helm-charts/pull/2774)

**Full Changelog**:
grafana/helm-charts@helm-k6-operator-3.3.0...grafana-7.0.14

###
[`v7.0.11`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.11)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.10...grafana-7.0.11)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Update Grafana to v10.2.2 by
[@&#8203;Footur](https://togithub.com/Footur) in
[https://github.com/grafana/helm-charts/pull/2795](https://togithub.com/grafana/helm-charts/pull/2795)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.10...grafana-7.0.11

###
[`v7.0.10`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.10)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.9...grafana-7.0.10)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Mount configSecret by
[@&#8203;YuleZ](https://togithub.com/YuleZ) in
[https://github.com/grafana/helm-charts/pull/2782](https://togithub.com/grafana/helm-charts/pull/2782)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.9...grafana-7.0.10

###
[`v7.0.9`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.9)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.8...grafana-7.0.9)

The leading tool for querying and visualizing time series and metrics.

##### What's Changed

- \[grafana] Docs: improve clarity of alert provisioning docs by
[@&#8203;jwreford99](https://togithub.com/jwreford99) in
[https://github.com/grafana/helm-charts/pull/2792](https://togithub.com/grafana/helm-charts/pull/2792)

##### New Contributors

- [@&#8203;jwreford99](https://togithub.com/jwreford99) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2792](https://togithub.com/grafana/helm-charts/pull/2792)

**Full Changelog**:
grafana/helm-charts@tempo-distributed-1.7.1...grafana-7.0.9

###
[`v7.0.8`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.8)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.6...grafana-7.0.8)

The leading tool for querying and visualizing time series and metrics.

##### What's Changed

- \[grafana] feat(networkpolicy): specify egress destination by
[@&#8203;LeoFVO](https://togithub.com/LeoFVO) in
[https://github.com/grafana/helm-charts/pull/2776](https://togithub.com/grafana/helm-charts/pull/2776)

##### New Contributors

- [@&#8203;LeoFVO](https://togithub.com/LeoFVO) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2776](https://togithub.com/grafana/helm-charts/pull/2776)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.6...grafana-7.0.8

###
[`v7.0.6`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.6)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.5...grafana-7.0.6)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] sc datasources only as init container w/ init container
config by [@&#8203;bt909](https://togithub.com/bt909) in
[https://github.com/grafana/helm-charts/pull/2760](https://togithub.com/grafana/helm-charts/pull/2760)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.5...grafana-7.0.6

###
[`v7.0.5`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.5)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.4...grafana-7.0.5)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Fixed broken URL to ALB actions in the README by
[@&#8203;Mattie112](https://togithub.com/Mattie112) in
[https://github.com/grafana/helm-charts/pull/2773](https://togithub.com/grafana/helm-charts/pull/2773)

#### New Contributors

- [@&#8203;Mattie112](https://togithub.com/Mattie112) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2773](https://togithub.com/grafana/helm-charts/pull/2773)

**Full Changelog**:
grafana/helm-charts@rollout-operator-0.10.0...grafana-7.0.5

###
[`v7.0.4`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.4)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.3...grafana-7.0.4)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] allow alerts sidecar as init container by
[@&#8203;bt909](https://togithub.com/bt909) in
[https://github.com/grafana/helm-charts/pull/2771](https://togithub.com/grafana/helm-charts/pull/2771)

**Full Changelog**:
grafana/helm-charts@helm-k6-operator-3.0.0...grafana-7.0.4

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/lambchop4prez/network).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
robmcelvenny referenced this pull request in owen-grady/uds-core-slim-dev Jun 3, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/curlimages/curl](https://togithub.com/curl/curl-container)
| major | `7.85.0` -> `8.5.0` |
| docker.io/grafana/grafana | minor | `10.1.5` -> `10.3.1` |
| docker.io/library/busybox | minor | `1.31.1` -> `1.36.1` |
|
[ghcr.io/kiwigrid/k8s-sidecar](https://togithub.com/kiwigrid/k8s-sidecar)
| patch | `1.25.2` -> `1.25.3` |
| [grafana](https://grafana.com)
([source](https://togithub.com/grafana/helm-charts)) | minor | `7.0.6`
-> `7.2.4` |
|
[registry1.dso.mil/ironbank/kiwigrid/k8s-sidecar](https://togithub.com/kiwigrid/k8s-sidecar)
([source](https://repo1.dso.mil/dsop/kiwigrid/k8s-sidecar)) | patch |
`1.25.2` -> `1.25.3` |
|
[registry1.dso.mil/ironbank/opensource/grafana/grafana](https://togithub.com/grafana/grafana)
([source](https://repo1.dso.mil/dsop/opensource/grafana/grafana)) |
patch | `10.2.2` -> `10.2.3` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>curl/curl-container (docker.io/curlimages/curl)</summary>

###
[`v8.5.0`](https://togithub.com/curl/curl-container/blob/HEAD/CHANGELOG.md#850-1---2023-01-19)

[Compare
Source](https://togithub.com/curl/curl-container/compare/8.4.0...8.5.0)

##### Changed

-   add libpsl
-   bump to alpine 3.19.0

###
[`v8.4.0`](https://togithub.com/curl/curl-container/blob/HEAD/CHANGELOG.md#840---2023-10-11)

[Compare
Source](https://togithub.com/curl/curl-container/compare/8.3.0...8.4.0)

##### Changed

-   bump to curl 8.4.0
-   bump to alpine 3.18.4
-   build enabled --with-gssapi

###
[`v8.3.0`](https://togithub.com/curl/curl-container/releases/tag/8.3.0)

[Compare
Source](https://togithub.com/curl/curl-container/compare/8.2.1...8.3.0)

#### \[8.3.1] - 2023-09-13

##### Changed

-   bump to curl 8.3.0
-   bump to alpine 3.18.3

###
[`v8.2.1`](https://togithub.com/curl/curl-container/blob/HEAD/CHANGELOG.md#821---2023-07-26)

[Compare
Source](https://togithub.com/curl/curl-container/compare/8.2.0...8.2.1)

##### Changed

-   bump to curl 8.2.1

###
[`v8.2.0`](https://togithub.com/curl/curl-container/blob/HEAD/CHANGELOG.md#820---2023-07-19)

[Compare
Source](https://togithub.com/curl/curl-container/compare/8.1.2...8.2.0)

##### Changed

-   bump to curl 8.2.0
-   bump to alpine 3.18.2

###
[`v8.1.2`](https://togithub.com/curl/curl-container/blob/HEAD/CHANGELOG.md#812-5---2023-06-14)

##### Changed

-   added clamav and grype to security scan
-   added user working directory
-   skimmed apk cache
- added back arches (arm64, etc) by fixing issue
[#&#8203;3](https://togithub.com/curl/curl-container/issues/3)

</details>

<details>
<summary>kiwigrid/k8s-sidecar (ghcr.io/kiwigrid/k8s-sidecar)</summary>

###
[`v1.25.3`](https://togithub.com/kiwigrid/k8s-sidecar/releases/tag/1.25.3)

[Compare
Source](https://togithub.com/kiwigrid/k8s-sidecar/compare/1.25.2...1.25.3)

#### 💬 Other

-   Remove misleading doc for REQ_SKIP_TLS_VERIFY
- PR:
[#&#8203;310](https://togithub.com/kiwigrid/k8s-sidecar/issues/310)

#### 📦 Dependencies

-   build(deps): bump kubernetes from 27.2.0 to 28.1.0 in /src
- PR:
[#&#8203;308](https://togithub.com/kiwigrid/k8s-sidecar/issues/308)

</details>

<details>
<summary>grafana/helm-charts (grafana)</summary>

###
[`v7.2.4`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.4)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.3...grafana-7.2.4)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] fix Chart.yaml - fix incorrect license
[#&#8203;2882](https://togithub.com/grafana/helm-charts/issues/2882) by
[@&#8203;arukiidou](https://togithub.com/arukiidou) in
[https://github.com/grafana/helm-charts/pull/2909](https://togithub.com/grafana/helm-charts/pull/2909)

**Full Changelog**:
grafana/helm-charts@loki-stack-2.10.1...grafana-7.2.4

###
[`v7.2.3`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.3)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.2...grafana-7.2.3)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Allow to customize empty dir volume by
[@&#8203;YvesZelros](https://togithub.com/YvesZelros) in
[https://github.com/grafana/helm-charts/pull/2911](https://togithub.com/grafana/helm-charts/pull/2911)

#### New Contributors

- [@&#8203;YvesZelros](https://togithub.com/YvesZelros) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2911](https://togithub.com/grafana/helm-charts/pull/2911)

**Full Changelog**:
grafana/helm-charts@grafana-7.2.2...grafana-7.2.3

###
[`v7.2.2`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.2)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.1...grafana-7.2.2)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Don't fail assertNoLeakedSecrets check if a variable
expansion operator is found by
[@&#8203;bdalpe](https://togithub.com/bdalpe) in
[https://github.com/grafana/helm-charts/pull/2904](https://togithub.com/grafana/helm-charts/pull/2904)

#### New Contributors

- [@&#8203;bdalpe](https://togithub.com/bdalpe) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2904](https://togithub.com/grafana/helm-charts/pull/2904)

**Full Changelog**:
grafana/helm-charts@tempo-distributed-1.8.0...grafana-7.2.2

###
[`v7.2.1`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.1)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.2.0...grafana-7.2.1)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] fix secret datasources/notifiers rendering by
[@&#8203;JordanGoasdoue](https://togithub.com/JordanGoasdoue) in
[https://github.com/grafana/helm-charts/pull/2895](https://togithub.com/grafana/helm-charts/pull/2895)

#### New Contributors

- [@&#8203;JordanGoasdoue](https://togithub.com/JordanGoasdoue) made
their first contribution in
[https://github.com/grafana/helm-charts/pull/2895](https://togithub.com/grafana/helm-charts/pull/2895)

**Full Changelog**:
grafana/helm-charts@grafana-7.2.0...grafana-7.2.1

###
[`v7.2.0`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.2.0)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.1.0...grafana-7.2.0)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Support Datasource sidecar having envValueFrom by
[@&#8203;mtenrero](https://togithub.com/mtenrero) in
[https://github.com/grafana/helm-charts/pull/2862](https://togithub.com/grafana/helm-charts/pull/2862)

#### New Contributors

- [@&#8203;mtenrero](https://togithub.com/mtenrero) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2862](https://togithub.com/grafana/helm-charts/pull/2862)

**Full Changelog**:
grafana/helm-charts@helm-k6-operator-3.4.0...grafana-7.2.0

###
[`v7.1.0`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.1.0)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.22...grafana-7.1.0)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] feat: fail when users store secrets in plaintext by
[@&#8203;DerekTBrown](https://togithub.com/DerekTBrown) in
[https://github.com/grafana/helm-charts/pull/2867](https://togithub.com/grafana/helm-charts/pull/2867)

#### New Contributors

- [@&#8203;DerekTBrown](https://togithub.com/DerekTBrown) made their
first contribution in
[https://github.com/grafana/helm-charts/pull/2867](https://togithub.com/grafana/helm-charts/pull/2867)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.22...grafana-7.1.0

###
[`v7.0.22`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.22)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.21...grafana-7.0.22)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] app version to 10.2.3 by
[@&#8203;akselleirv](https://togithub.com/akselleirv) in
[https://github.com/grafana/helm-charts/pull/2879](https://togithub.com/grafana/helm-charts/pull/2879)

#### New Contributors

- [@&#8203;akselleirv](https://togithub.com/akselleirv) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2879](https://togithub.com/grafana/helm-charts/pull/2879)

**Full Changelog**:
grafana/helm-charts@tempo-distributed-1.7.4...grafana-7.0.22

###
[`v7.0.21`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.21)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.20...grafana-7.0.21)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Quote hostname in ingress.yaml by
[@&#8203;msadiq058](https://togithub.com/msadiq058) in
[https://github.com/grafana/helm-charts/pull/2871](https://togithub.com/grafana/helm-charts/pull/2871)

#### New Contributors

- [@&#8203;msadiq058](https://togithub.com/msadiq058) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2871](https://togithub.com/grafana/helm-charts/pull/2871)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.20...grafana-7.0.21

###
[`v7.0.20`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.20)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.19...grafana-7.0.20)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Added support for loadBalancerClass by
[@&#8203;Sheikh-Abubaker](https://togithub.com/Sheikh-Abubaker) in
[https://github.com/grafana/helm-charts/pull/2790](https://togithub.com/grafana/helm-charts/pull/2790)

**Full Changelog**:
grafana/helm-charts@grafana-agent-0.30.0...grafana-7.0.20

###
[`v7.0.19`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.19)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.18...grafana-7.0.19)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Updates comments in values.yaml to align
extraVolumes.hostP… by [@&#8203;mheers](https://togithub.com/mheers) in
[https://github.com/grafana/helm-charts/pull/2856](https://togithub.com/grafana/helm-charts/pull/2856)

#### New Contributors

- [@&#8203;mheers](https://togithub.com/mheers) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2856](https://togithub.com/grafana/helm-charts/pull/2856)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.18...grafana-7.0.19

###
[`v7.0.18`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.18)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.17...grafana-7.0.18)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] fix: Change sidecar.alerts.initDatasources to
sidecar.alerts.initAlerts by
[@&#8203;kvanzuijlen](https://togithub.com/kvanzuijlen) in
[https://github.com/grafana/helm-charts/pull/2789](https://togithub.com/grafana/helm-charts/pull/2789)

**Full Changelog**:
grafana/helm-charts@k8s-monitoring-0.7.0...grafana-7.0.18

###
[`v7.0.17`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.17)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.16...grafana-7.0.17)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Document extraVolumes by
[@&#8203;stephan2012](https://togithub.com/stephan2012) in
[https://github.com/grafana/helm-charts/pull/2823](https://togithub.com/grafana/helm-charts/pull/2823)

#### New Contributors

- [@&#8203;stephan2012](https://togithub.com/stephan2012) made their
first contribution in
[https://github.com/grafana/helm-charts/pull/2823](https://togithub.com/grafana/helm-charts/pull/2823)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.16...grafana-7.0.17

###
[`v7.0.16`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.16)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.15...grafana-7.0.16)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Avoid unnecessary pod restart on each helm chart version by
[@&#8203;jkroepke](https://togithub.com/jkroepke) in
[https://github.com/grafana/helm-charts/pull/2834](https://togithub.com/grafana/helm-charts/pull/2834)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.15...grafana-7.0.16

###
[`v7.0.15`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.15)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.14...grafana-7.0.15)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Allow setting dns config for pod template by
[@&#8203;weikinhuang](https://togithub.com/weikinhuang) in
[https://github.com/grafana/helm-charts/pull/2835](https://togithub.com/grafana/helm-charts/pull/2835)

#### New Contributors

- [@&#8203;weikinhuang](https://togithub.com/weikinhuang) made their
first contribution in
[https://github.com/grafana/helm-charts/pull/2835](https://togithub.com/grafana/helm-charts/pull/2835)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.14...grafana-7.0.15

###
[`v7.0.14`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.14)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.11...grafana-7.0.14)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] - Add support for templating in ServiceMonitor labels by
[@&#8203;Allex1](https://togithub.com/Allex1) in
[https://github.com/grafana/helm-charts/pull/2774](https://togithub.com/grafana/helm-charts/pull/2774)

**Full Changelog**:
grafana/helm-charts@helm-k6-operator-3.3.0...grafana-7.0.14

###
[`v7.0.11`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.11)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.10...grafana-7.0.11)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Update Grafana to v10.2.2 by
[@&#8203;Footur](https://togithub.com/Footur) in
[https://github.com/grafana/helm-charts/pull/2795](https://togithub.com/grafana/helm-charts/pull/2795)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.10...grafana-7.0.11

###
[`v7.0.10`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.10)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.9...grafana-7.0.10)

The leading tool for querying and visualizing time series and metrics.

#### What's Changed

- \[grafana] Mount configSecret by
[@&#8203;YuleZ](https://togithub.com/YuleZ) in
[https://github.com/grafana/helm-charts/pull/2782](https://togithub.com/grafana/helm-charts/pull/2782)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.9...grafana-7.0.10

###
[`v7.0.9`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.9)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.8...grafana-7.0.9)

The leading tool for querying and visualizing time series and metrics.

##### What's Changed

- \[grafana] Docs: improve clarity of alert provisioning docs by
[@&#8203;jwreford99](https://togithub.com/jwreford99) in
[https://github.com/grafana/helm-charts/pull/2792](https://togithub.com/grafana/helm-charts/pull/2792)

##### New Contributors

- [@&#8203;jwreford99](https://togithub.com/jwreford99) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2792](https://togithub.com/grafana/helm-charts/pull/2792)

**Full Changelog**:
grafana/helm-charts@tempo-distributed-1.7.1...grafana-7.0.9

###
[`v7.0.8`](https://togithub.com/grafana/helm-charts/releases/tag/grafana-7.0.8)

[Compare
Source](https://togithub.com/grafana/helm-charts/compare/grafana-7.0.6...grafana-7.0.8)

The leading tool for querying and visualizing time series and metrics.

##### What's Changed

- \[grafana] feat(networkpolicy): specify egress destination by
[@&#8203;LeoFVO](https://togithub.com/LeoFVO) in
[https://github.com/grafana/helm-charts/pull/2776](https://togithub.com/grafana/helm-charts/pull/2776)

##### New Contributors

- [@&#8203;LeoFVO](https://togithub.com/LeoFVO) made their first
contribution in
[https://github.com/grafana/helm-charts/pull/2776](https://togithub.com/grafana/helm-charts/pull/2776)

**Full Changelog**:
grafana/helm-charts@grafana-7.0.6...grafana-7.0.8

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/defenseunicorns/uds-core).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.