Skip to content

Commit

Permalink
Add information about flux updates in Renovate documentation (#331)
Browse files Browse the repository at this point in the history
* Add information about flux updates in Renovate documentation

* Update 2023-07-01-renovate-bot-kubernetes.md

Set url fragment instead of FQDN

---------

Co-authored-by: Techno Tim <[email protected]>
  • Loading branch information
morotsgurka and timothystewart6 authored Sep 29, 2024
1 parent d3e873b commit d55790d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions _posts/2023-07-01-renovate-bot-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,24 @@ So we’ll need to `git pull` to get latest and we should see our Renovate confi
```
{: file="renovate.json" }

If you're using FluxCD ([as shown here](/posts/flux-devops-gitops)) you also want add the `flux` extension and filematch. This will allow Renovate to scan your FluxCD manifests as well as creating Pull Requests for your Helm chart versions.

```json
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"flux": {
"fileMatch": ["\\.yml$"]
},
"kubernetes": {
"fileMatch": ["\\.yml$"]
}
}
```
{: file="renovate.json" }

Once we’ve made that change to our config locally, we’ll then commit that change and push it up.

Once we push this change up and it scans our repo, we can see a new [issue that was created](https://github.com/techno-tim/k8s-renovate/issues/2)! This is a special type of issue that Renovate creates for us and it is kind of like a dashboard for all of our dependencies.
Expand Down

0 comments on commit d55790d

Please sign in to comment.