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. To use this image execute the following command in a docker environment.
```bash ```bash
docker run \ $ docker run \
--entrypoint /bin/sh \ --rm \
-it \ volkerraschek/network-tools:latest \
--rm \ sh
docker.io/volkerraschek/network-tools:latest
``` ```
### Kubernetes ### Kubernetes

View File

@ -1,9 +1,29 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "assignees": [ "volker.raschek" ],
"local>volker.raschek/renovate-config:default#master", "customManagers": [
"local>volker.raschek/renovate-config:container#master", {
"local>volker.raschek/renovate-config:actions#master", "customType": "regex",
"local>volker.raschek/renovate-config:regexp#master" "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"
} }