test renovate
This commit is contained in:
parent
ca2415c406
commit
0624f9ae4c
1 changed files with 18 additions and 5 deletions
23
.github/renovate.json
vendored
23
.github/renovate.json
vendored
|
@ -1,8 +1,12 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"extends": ["config:recommended"],
|
"extends": [
|
||||||
"flux": {
|
"config:recommended"
|
||||||
"fileMatch": ["kubernetes/.+\\.ya?ml$"]
|
],
|
||||||
|
"kubernetes": {
|
||||||
|
"fileMatch": [
|
||||||
|
"(^|/)kubernetes/.+\\.ya?ml$"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"helmv3": {
|
"helmv3": {
|
||||||
"registryAliases": {
|
"registryAliases": {
|
||||||
|
@ -10,11 +14,20 @@
|
||||||
"ingress-nginx": "https://kubernetes.github.io/ingress-nginx",
|
"ingress-nginx": "https://kubernetes.github.io/ingress-nginx",
|
||||||
"reflector": "https://emberstack.github.io/helm-charts"
|
"reflector": "https://emberstack.github.io/helm-charts"
|
||||||
},
|
},
|
||||||
"fileMatch": ["kubernetes/apps/.+/helmrelease\\.ya?ml$"]
|
"fileMatch": [
|
||||||
|
"(^|/)kubernetes/apps/.+/helmrelease\\.ya?ml$"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"helm-values": {
|
||||||
|
"fileMatch": [
|
||||||
|
"(^|/)kubernetes/apps/.+/helmrepo\\.ya?ml$"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"regexManagers": [
|
"regexManagers": [
|
||||||
{
|
{
|
||||||
"fileMatch": ["kubernetes/apps/.+/helmrelease\\.ya?ml$"],
|
"fileMatch": [
|
||||||
|
"(^|/)kubernetes/apps/.+/helmrelease\\.ya?ml$"
|
||||||
|
],
|
||||||
"matchStrings": [
|
"matchStrings": [
|
||||||
"chart:\\s*\\n\\s*spec:\\s*\\n\\s*chart:\\s*(?<depName>\\S+)\\s*\\n\\s*version:\\s*[\"']?(?<currentValue>[0-9a-zA-Z\\.\\-]+)[\"']?"
|
"chart:\\s*\\n\\s*spec:\\s*\\n\\s*chart:\\s*(?<depName>\\S+)\\s*\\n\\s*version:\\s*[\"']?(?<currentValue>[0-9a-zA-Z\\.\\-]+)[\"']?"
|
||||||
],
|
],
|
||||||
|
|
Reference in a new issue