Compare commits

..

No commits in common. "master" and "v3.15.4" have entirely different histories.

4 changed files with 59 additions and 37 deletions

View File

@ -8,12 +8,12 @@ clone:
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.4.0
image: git.cryptic.systems/volker.raschek/git:1.3.1
- name: markdown lint
commands:
- markdownlint *.md
image: git.cryptic.systems/volker.raschek/markdownlint:0.44.0
image: git.cryptic.systems/volker.raschek/markdownlint:0.41.0
resources:
limits:
cpu: 150
@ -63,10 +63,10 @@ platform:
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.4.0
image: git.cryptic.systems/volker.raschek/git:1.3.1
- name: build
image: docker.io/plugins/docker:20.18.6
image: docker.io/plugins/docker:20.18.3
settings:
auto_tag: false
dockerfile: Dockerfile
@ -129,10 +129,10 @@ platform:
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.4.0
image: git.cryptic.systems/volker.raschek/git:1.3.1
- name: build
image: docker.io/plugins/docker:20.18.6
image: docker.io/plugins/docker:20.18.3
settings:
auto_tag: false
dockerfile: Dockerfile
@ -195,10 +195,10 @@ platform:
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.4.0
image: git.cryptic.systems/volker.raschek/git:1.3.1
- name: build
image: docker.io/plugins/docker:20.18.6
image: docker.io/plugins/docker:20.18.3
settings:
auto_tag: false
dockerfile: Dockerfile
@ -259,10 +259,10 @@ platform:
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.4.0
image: git.cryptic.systems/volker.raschek/git:1.3.1
- name: build
image: docker.io/plugins/docker:20.18.6
image: docker.io/plugins/docker:20.18.3
settings:
auto_tag: false
dockerfile: Dockerfile
@ -325,7 +325,7 @@ node_selector:
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.4.0
image: git.cryptic.systems/volker.raschek/git:1.3.1
- name: build-manifest
image: docker.io/plugins/manifest:1.4.0
@ -382,7 +382,7 @@ depends_on:
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.4.0
image: git.cryptic.systems/volker.raschek/git:1.3.1
- name: latest-sync
commands:
@ -396,7 +396,7 @@ steps:
from_secret: container_image_registry_user
DEST_CRED_PASSWORD:
from_secret: container_image_registry_password
image: quay.io/skopeo/stable:v1.18.0
image: quay.io/skopeo/stable:v1.15.2
- name: email-notification
environment:
@ -443,10 +443,10 @@ platform:
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.4.0
image: git.cryptic.systems/volker.raschek/git:1.3.1
- name: build
image: docker.io/plugins/docker:20.18.6
image: docker.io/plugins/docker:20.18.3
settings:
auto_tag: true
auto_tag_suffix: amd64
@ -503,10 +503,10 @@ platform:
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.4.0
image: git.cryptic.systems/volker.raschek/git:1.3.1
- name: build
image: docker.io/plugins/docker:20.18.6
image: docker.io/plugins/docker:20.18.3
settings:
auto_tag: true
auto_tag_suffix: arm64-v8
@ -568,7 +568,7 @@ node_selector:
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.4.0
image: git.cryptic.systems/volker.raschek/git:1.3.1
- name: build-manifest
image: docker.io/plugins/manifest:1.4.0
@ -622,7 +622,7 @@ depends_on:
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.4.0
image: git.cryptic.systems/volker.raschek/git:1.3.1
- name: tagged-sync
commands:
@ -636,7 +636,7 @@ steps:
from_secret: container_image_registry_user
DEST_CRED_PASSWORD:
from_secret: container_image_registry_password
image: quay.io/skopeo/stable:v1.18.0
image: quay.io/skopeo/stable:v1.15.2
- name: email-notification
environment:

View File

@ -1,18 +1,16 @@
FROM docker.io/library/alpine:3.21.3
FROM docker.io/library/alpine:3.20.2
ARG HELM_VERSION
RUN apk add bash curl git openssl && \
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 --output /tmp/install.sh
RUN if [[ -z "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh; fi
RUN if [[ -n "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh --version "${HELM_VERSION}"; fi
RUN [[ ${HELM_VERSION} == "" ]]; bash /tmp/install.sh
RUN [[ ${HELM_VERSION} != "" ]]; bash /tmp/install.sh --version ${HELM_VERSION}
RUN rm /tmp/install.sh
# Install additionally helm plugins
RUN helm plugin install https://github.com/chartmuseum/helm-push.git && \
helm plugin install https://github.com/helm-unittest/helm-unittest.git && \
helm plugin install https://github.com/losisin/helm-values-schema-json.git
# Install additionally cm-push plugin
RUN helm plugin install https://github.com/chartmuseum/helm-push.git
ENTRYPOINT [ "/usr/local/bin/helm" ]

View File

@ -1,6 +1,6 @@
# HELM_VERSION
# Only required to install a specify version
HELM_VERSION?=v3.17.1 # renovate: datasource=github-releases depName=helm/helm
# Only required to install a specifiy version
HELM_VERSION?=v3.15.4 # renovate: datasource=github-releases depName=helm/helm
# CONTAINER_RUNTIME
# The CONTAINER_RUNTIME variable will be used to specified the path to a
@ -9,8 +9,8 @@ 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?=git.cryptic.systems
HELM_IMAGE_REGISTRY_USER?=volker.raschek
HELM_IMAGE_REGISTRY_NAME:=git.cryptic.systems
HELM_IMAGE_REGISTRY_USER:=volker.raschek
HELM_IMAGE_NAMESPACE?=${HELM_IMAGE_REGISTRY_USER}
HELM_IMAGE_NAME:=helm

View File

@ -1,16 +1,40 @@
{
"$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" ],
"labels": [ "renovate" ],
"packageRules": [
{
"addLabels": [ "renovate/droneci", "renovate/automerge" ],
"automerge": true,
"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,
"matchPackageNames": [ "helm" ],
"matchManagers": [ "regex" ]
}
],
"rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch",
"regexManagers": [
{
"description": "Update version",
"fileMatch": [
"^Makefile$"
],
"matchStrings": [
"HELM_VERSION\\?=(?<currentValue>.*) # renovate: datasource=(?<datasource>.*) depName=(?<depName>.*)( lookupName=(?<lookupName>.*))?( versioning=(?<versioning>.*))?"
]
}
]
}