Compare commits

..

No commits in common. "6f48785a7bbf3be8dc9835ffebfc93f7700dc171" and "60de7f9a21cf0b139abebffdf0bc77b9302e6df3" have entirely different histories.

2 changed files with 31 additions and 12 deletions

View File

@ -15,11 +15,10 @@ or kubernetes.
To use this image execute the following command in a docker environment.
```bash
docker run \
--entrypoint /bin/sh \
-it \
--rm \
docker.io/volkerraschek/network-tools:latest
$ docker run \
--rm \
volkerraschek/network-tools:latest \
sh
```
### Kubernetes

View File

@ -1,9 +1,29 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>volker.raschek/renovate-config:default#master",
"local>volker.raschek/renovate-config:container#master",
"local>volker.raschek/renovate-config:actions#master",
"local>volker.raschek/renovate-config:regexp#master"
]
}
"assignees": [ "volker.raschek" ],
"customManagers": [
{
"customType": "regex",
"description": "Extract renovate config",
"fileMatch": [
"^Makefile$"
],
"matchStrings": [
"^[^\\s]*VERSION(:|\\?)?=\"?(?<currentValue>[\\w.]*)\"? # renovate:([\\s]+datasource=['\"]*(?<datasource>[^\\s\"']*)['\"]*|[\\s]+depName=['\"]*(?<depName>[^\\s'\"]*)['\"]*|[\\s]+registryUrl=['\"]*(?<registryUrl>[^\\s'\"]*)['\"]*|[\\s]+versioning=['\"]*(?<versioning>[^\\s'\"]*)['\"]*|[\\s]+extractVersion=['\"]*(?<extractVersion>[^\\s'\"]*)['\"]*)*"
]
}
],
"labels": [ "renovate" ],
"packageRules": [
{
"description": "Automatically update grouped public container images - patch",
"addLabels": ["renovate/automerge","renovate/container-images"],
"automerge": true,
"enabled": true,
"matchDatasources": ["docker"],
"matchUpdateTypes": ["minor", "patch"]
}
],
"rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch"
}