File tree 4 files changed +22
-14
lines changed
4 files changed +22
-14
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
set -ex
4
4
5
5
K3S_MANIFEST_DIR=${K3S_MANIFEST_DIR:-/ var/ lib/ rancher/ k3s/ server/ manifests/ }
6
-
7
- # renovate: datasource=docker depName=ghcr.io/pluralsh/plural-cli-cloud
8
6
BASE_IMAGE=" ghcr.io/pluralsh/kairos-plural-cli:bootstrap"
9
7
TOKEN=" "
10
8
URL=" "
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ FROM alpine:3.21.2 AS build
2
2
3
3
ARG TARGETARCH
4
4
5
- # renovate: datasource=github-releases depName=pluralsh/plural-cli
5
+ # renovate: datasource=github-tags depName=plural-cli packageName =pluralsh/plural-cli
6
6
ENV PLURAL_VERSION=0.11.1
7
7
ADD "https://github.com/pluralsh/plural-cli/releases/download/v${PLURAL_VERSION}/plural-cli_${PLURAL_VERSION}_Linux_${TARGETARCH}.tar.gz" /
8
8
RUN tar -xzvf /plural-cli_${PLURAL_VERSION}_Linux_${TARGETARCH}.tar.gz plural
9
9
10
- # renovate: datasource=github-releases depName=helm/helm
10
+ # renovate: datasource=github-tags depName=helm packageName=helm /helm versioning=node
11
11
ENV HELM_VERSION=v3.15.1
12
12
ADD "https://get.helm.sh/helm-${HELM_VERSION}-linux-${TARGETARCH}.tar.gz" /
13
13
RUN tar -xzvf /helm-${HELM_VERSION}-linux-${TARGETARCH}.tar.gz linux-${TARGETARCH}/helm
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3
+ "extends" : [" config:recommended" , " :dependencyDashboard" ],
4
+ "packageRules" : [
5
+ {
6
+ "matchPackageNames" : [" pluralsh/plural-cli" ],
7
+ "extractVersion" : " ^v(?<version>.*)$"
8
+ }
9
+ ],
10
+ "customManagers" : [
11
+ {
12
+ "customType" : " regex" ,
13
+ "description" : " Update _VERSION variables in Dockerfiles" ,
14
+ "fileMatch" : [" (^|/|\\ .)Dockerfile$" , " (^|/)Dockerfile\\ .[^/]*$" ],
15
+ "matchStrings" : [
16
+ " # renovate: datasource=(?<datasource>[a-z-]+?)(?: depName=(?<depName>.+?))? packageName=(?<packageName>.+?)(?: versioning=(?<versioning>[a-z-]+?))?\\ s(?:ENV|ARG) .+?_VERSION=(?<currentValue>.+?)\\ s"
17
+ ]
18
+ }
19
+ ]
20
+ }
You can’t perform that action at this time.
0 commit comments