Skip to content

Commit

Permalink
fix(renovate): Don't process bootstrap templates
Browse files Browse the repository at this point in the history
  • Loading branch information
jfroy committed Apr 18, 2024
1 parent 336b6be commit a355880
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -27,33 +27,33 @@
"ignorePaths": ["**/*.sops.*", "**/.archive/**", "**/resources/**"],
"flux": {
"fileMatch": [
"(^|/)kubernetes/.+\\.ya?ml(?:\\.j2)?$"
"(^|/)kubernetes/.+\\.ya?ml$"
]
},
"helm-values": {
"fileMatch": [
"(^|/)kubernetes/.+\\.ya?ml(?:\\.j2)?$"
"(^|/)kubernetes/.+\\.ya?ml$"
]
},
"helmfile": {
"fileMatch": [
"(^|/)helmfile\\.ya?ml(?:\\.j2)?$"
"(^|/)helmfile\\.ya?ml$"
]
},
"kubernetes": {
"fileMatch": [
"(^|/)\\.taskfiles/.+\\.ya?ml(?:\\.j2)?$",
"(^|/)kubernetes/.+\\.ya?ml(?:\\.j2)?$"
"(^|/)\\.taskfiles/.+\\.ya?ml$",
"(^|/)kubernetes/.+\\.ya?ml$"
]
},
"kustomize": {
"fileMatch": [
"(^|/)kustomization\\.ya?ml(?:\\.j2)?$"
"(^|/)kustomization\\.ya?ml$"
]
},
"pip_requirements": {
"fileMatch": [
"(^|/)[\\w-]*requirements(-\\w+)?\\.(txt|pip)(?:\\.j2)?$"
"(^|/)[\\w-]*requirements(-\\w+)?\\.(txt|pip)$"
]
}
}
5 changes: 2 additions & 3 deletions .github/renovate/customManagers.json5
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
"customType": "regex",
"description": ["Process custom dependencies"],
"fileMatch": [
"(^|/).taskfiles/.+\\.ya?ml(?:\\.j2)?$",
"(^|/)ansible/.+\\.ya?ml(?:\\.j2)?$",
"(^|/)kubernetes/.+\\.ya?ml(?:\\.j2)?$"
"(^|/).taskfiles/.+\\.ya?ml$",
"(^|/)kubernetes/.+\\.ya?ml$"
],
"matchStrings": [
// # renovate: datasource=helm depName=cilium repository=https://helm.cilium.io
Expand Down
2 changes: 1 addition & 1 deletion .github/renovate/grafanaDashboards.json5
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"customType": "regex",
"description": ["Process Grafana dashboards"],
"fileMatch": [
"(^|/)kubernetes/.+\\.ya?ml(?:\\.j2)?$"
"(^|/)kubernetes/.+\\.ya?ml$"
],
"matchStrings": [
"depName=\"(?<depName>.*)\"\\n(?<indentation>\\s+)gnetId: (?<packageName>\\d+)\\n.+revision: (?<currentValue>\\d+)"
Expand Down

0 comments on commit a355880

Please sign in to comment.