Compare commits
55
Commits
v3.8.1
...
0d943376e7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0d943376e7
|
||
|
|
f73eddd042
|
||
|
|
38c3bc7d5d
|
||
|
|
8987794f2d
|
||
|
|
b6207b0e77
|
||
|
|
9f309b4730
|
||
|
|
c408d860d2
|
||
|
|
5d5e22df79 | ||
|
|
3a1f44c5c1
|
||
|
|
b6105d12e5 | ||
|
|
152f20fe9b
|
||
|
|
3eb4d90651
|
||
|
|
aa8afab6dd
|
||
|
|
2bded211fb | ||
|
|
9ac4ed9a07 | ||
|
|
cfe9857d40
|
||
|
|
2138b801cf | ||
|
|
4430a371d4
|
||
|
|
a1311cdb51
|
||
|
|
67e3106a54
|
||
|
|
5e7defd1a2
|
||
|
|
b970f8d81e
|
||
|
|
43985ce2e5 | ||
|
|
ea222a8314 | ||
|
|
fc81067211 | ||
|
|
ad0a308774 | ||
|
|
66ae6e4dbc | ||
|
|
3a7e0cf35f
|
||
|
|
5f4aff7976 | ||
|
|
946cf7d351 | ||
|
|
6928585892 | ||
|
|
f6ede8ceb9 | ||
|
|
2b76f8e8bb | ||
|
|
bd1e6dd432 | ||
|
|
9af901b752 | ||
|
|
5d5f8393bb | ||
|
|
31019deafc
|
||
|
|
5855874feb
|
||
|
|
2ef2932c8d | ||
|
|
9d13af7eb5
|
||
|
|
cfea6146af | ||
|
|
82b29f2fe2 | ||
|
|
ede4e04b5b | ||
|
|
733f0d32c6 | ||
|
|
b45bc96c1c | ||
|
|
3a59159952 | ||
|
|
3975c50d29 | ||
|
|
71b37676d1
|
||
|
|
109f7300c6
|
||
|
|
d8271a003f | ||
|
|
5ec5f7333d | ||
|
|
f94e2dc770 | ||
|
|
142144ecf5 | ||
|
|
dffd6eb068
|
||
|
|
ff5b969f5f
|
+418
-298
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM docker.io/library/alpine:3.15
|
||||
FROM docker.io/library/alpine:3.18.2
|
||||
|
||||
ARG HELM_VERSION
|
||||
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
# HELM_VERSION
|
||||
# Only required to install a specifiy version
|
||||
HELM_VERSION?=v3.8.1 # renovate: datasource=github-releases depName=helm lookupName=helm/helm versioning=semver
|
||||
HELM_VERSION?=v3.12.2 # renovate: datasource=github-releases depName=helm/helm
|
||||
|
||||
# CONTAINER_RUNTIME
|
||||
# The CONTAINER_RUNTIME variable will be used to specified the path to a
|
||||
# container runtime. This is needed to start and run a container image.
|
||||
CONTAINER_RUNTIME?=$(shell which docker)
|
||||
CONTAINER_RUNTIME?=$(shell which podman)
|
||||
|
||||
# HELM_IMAGE_REGISTRY_NAME
|
||||
# Defines the name of the new container to be built using several variables.
|
||||
HELM_IMAGE_REGISTRY_NAME:=docker.io
|
||||
HELM_IMAGE_REGISTRY_USER:=volkerraschek
|
||||
HELM_IMAGE_REGISTRY_NAME:=git.cryptic.systems
|
||||
HELM_IMAGE_REGISTRY_USER:=volker.raschek
|
||||
|
||||
HELM_IMAGE_NAMESPACE?=${HELM_IMAGE_REGISTRY_USER}
|
||||
HELM_IMAGE_NAME:=helm
|
||||
|
||||
+5
-5
@@ -1,4 +1,4 @@
|
||||
image: volkerraschek/helm:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
||||
image: git.cryptic.systems/volker.raschek/helm:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
||||
{{#if build.tags}}
|
||||
tags:
|
||||
{{#each build.tags}}
|
||||
@@ -8,19 +8,19 @@ tags:
|
||||
{{/if}}
|
||||
manifests:
|
||||
-
|
||||
image: volkerraschek/helm:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
||||
image: git.cryptic.systems/volker.raschek/helm:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
||||
platform:
|
||||
architecture: amd64
|
||||
os: linux
|
||||
-
|
||||
image: volkerraschek/helm:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm-v7
|
||||
image: git.cryptic.systems/volker.raschek/helm:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm-v7
|
||||
platform:
|
||||
architecture: arm
|
||||
os: linux
|
||||
variant: v7
|
||||
-
|
||||
image: volkerraschek/helm:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8
|
||||
image: git.cryptic.systems/volker.raschek/helm:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8
|
||||
platform:
|
||||
architecture: arm64
|
||||
os: linux
|
||||
variant: v8
|
||||
variant: v8
|
||||
|
||||
@@ -11,6 +11,14 @@
|
||||
"matchManagers": "droneci",
|
||||
"matchUpdateTypes": [ "minor", "patch"]
|
||||
},
|
||||
{
|
||||
"description": "Automatically update patch version of used container images in docker files",
|
||||
"addLabels": [ "renovate/container-image", "renovate/automerge" ],
|
||||
"automerge": true,
|
||||
"matchBaseBranches": [ "master" ],
|
||||
"matchManagers": [ "dockerfile" ],
|
||||
"matchUpdateTypes": [ "patch" ]
|
||||
},
|
||||
{
|
||||
"addLabels": [ "renovate/helm", "renovate/automerge" ],
|
||||
"automerge": false,
|
||||
|
||||
Reference in New Issue
Block a user