An open API service indexing awesome lists of open source software.

https://github.com/klutchell/renovate-config

Shared renovate configuration and GitHub Action
https://github.com/klutchell/renovate-config

Last synced: 3 months ago
JSON representation

Shared renovate configuration and GitHub Action

Awesome Lists containing this project

README

          

# renovate-config

Shared renovate configuration and GitHub Action

## Custom Managers

### balena-cloud

This is a customer manager & datasource to query the balenaCloud application releases
and manage bh.cr registry tags.

Any of the following matches:

```Dockerfile
# Note that tags following the : are ignored by the bh.cr registry, so we use them for semver tracking
FROM bh.cr/gh_klutchell/tailscale-amd64/94bc62ba78e5d0611338535ce72054df:1.82.5-rev1
FROM bh.cr/gh_klutchell/tailscale-amd64/94bc62ba78e5d0611338535ce72054df
FROM bh.cr/gh_klutchell/tailscale-amd64:1.82.5-rev1
FROM bh.cr/gh_klutchell/tailscale-amd64/1.82.5-rev1
```

Will be replaced with:

```Dockerfile
# Note that tags following the : are ignored by the bh.cr registry, so we use them for semver tracking
FROM bh.cr/gh_klutchell/tailscale-amd64/94bc62ba78e5d0611338535ce72054df:1.82.5-rev1
```

Multiarch example usage:

```Dockerfile
# Dockerfile.template
ARG BALENA_ARCH=%%BALENA_ARCH%%

FROM bh.cr/gh_klutchell/tailscale-amd64:1.82.5-rev1 AS balena-tailscale-amd64
FROM bh.cr/gh_klutchell/tailscale-aarch64:1.82.5-rev1 AS balena-tailscale-aarch64
FROM bh.cr/gh_klutchell/tailscale-armv7hf:1.82.5-rev1 AS balena-tailscale-armv7hf

# hadolint ignore=DL3006
FROM balena-tailscale-${BALENA_ARCH}
```