e6152b379f
Adds a package rule to disable updates for the 'unboundsoftware/schemas' package in Kubernetes. Modifies the image reference in the deployment configuration to remove the specific SHA256 hash and use a dynamic commit tag instead. This improves maintainability and aligns with the latest deployment practices.
18 lines
321 B
JSON
18 lines
321 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"matchManagers": [
|
|
"kubernetes"
|
|
],
|
|
"matchPackageNames": [
|
|
"registry.gitlab.com/unboundsoftware/schemas"
|
|
],
|
|
"enabled": false
|
|
}
|
|
]
|
|
}
|