Skip to content

Commit abf9d85

Browse files
committed
Add information about flux updates in Renovate documentation
1 parent 44c18b6 commit abf9d85

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](https://technotim.live/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)