Skip to content

Add information about flux updates in Renovate documentation #331

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

Merged
merged 3 commits into from
Sep 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading