Skip to content

Commit d55790d

Browse files
Add information about flux updates in Renovate documentation (#331)
* 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 <timothystewart6@gmail.com>
1 parent d3e873b commit d55790d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

_posts/2023-07-01-renovate-bot-kubernetes.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,24 @@ So we’ll need to `git pull` to get latest and we should see our Renovate confi
117117
```
118118
{: file="renovate.json" }
119119

120+
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.
121+
122+
```json
123+
{
124+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
125+
"extends": [
126+
"config:base"
127+
],
128+
"flux": {
129+
"fileMatch": ["\\.yml$"]
130+
},
131+
"kubernetes": {
132+
"fileMatch": ["\\.yml$"]
133+
}
134+
}
135+
```
136+
{: file="renovate.json" }
137+
120138
Once we’ve made that change to our config locally, we’ll then commit that change and push it up.
121139

122140
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.

0 commit comments

Comments
 (0)