Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Mafyuh/iac
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 92dd123263039340b369b17e0f9a10f4bd9534a7
Choose a base ref
..
head repository: Mafyuh/iac
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d90d62dda2eb3f91c0162212370e4d10e8f4667c
Choose a head ref
Showing with 31 additions and 6 deletions.
  1. +31 −6 .github/renovate.json
37 changes: 31 additions & 6 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,44 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"kubernetes": {
"fileMatch": ["(^|/)kubernetes/.+\\.ya?ml$"]
"extends": [
"config:base"
],
"flux": {
"fileMatch": [
"(^|/)kubernetes/.+\\.ya?ml$"
]
},
"helmv3": {
"fileMatch": [
"^kubernetes/[^/]+/helrelease\\.ya?ml$"
"(^|/)kubernetes/apps/.+/helmrelease\\.ya?ml$"
]
},
"packageRules": [
{
"matchPackageNames": ["authentik"],
"registryUrls": ["https://charts.goauthentik.io"]
},
{
"matchPackageNames": ["ingress-nginx"],
"registryUrls": ["https://kubernetes.github.io/ingress-nginx"]
},
{
"matchPackageNames": ["reflector"],
"registryUrls": ["https://emberstack.github.io/helm-charts"]
}
],
"kubernetes": {
"fileMatch": [
"(^|/)kubernetes/.+\\.ya?ml$"
]
},
"regexManagers": [
{
"fileMatch": ["^kubernetes/[^/]+/helrelease\\.ya?ml$"],
"fileMatch": [
"(^|/)kubernetes/apps/.+/helmrelease\\.ya?ml$"
],
"matchStrings": [
"chart:\\s*\\n\\s*spec:\\s*\\n\\s*chart:\\s*(?<depName>[^\\n]+)\\n\\s*version:\\s*\"?(?<currentValue>[^\"]+)\"?"
"chart:\\s*\\n\\s*spec:\\s*\\n\\s*chart:\\s*(?<depName>\\S+)\\s*\\n\\s*version:\\s*[\"']?(?<currentValue>[0-9a-zA-Z\\.\\-]+)[\"']?"
],
"datasourceTemplate": "helm",
"versioningTemplate": "semver"