Compare commits

...

7 Commits

Author SHA1 Message Date
779f81257c
chore(deps): update docker.io/library/alpine docker tag to v3.22.0
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 12s
Build / build-amd64 (pull_request) Successful in 26s
Build / build-arm64 (pull_request) Successful in 1m41s
Build / build-amd64 (push) Successful in 26s
Lint Markdown files / markdown-lint (push) Successful in 5s
Build / build-arm64 (push) Successful in 1m34s
2025-05-30 19:07:18 +00:00
b8b1eb9cfb
chore(deps): update dependency helm/helm to v3.18.1
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 4s
Build / build-amd64 (pull_request) Successful in 1m26s
Build / build-arm64 (pull_request) Successful in 1m39s
Lint Markdown files / markdown-lint (push) Successful in 11s
Build / build-amd64 (push) Successful in 26s
Build / build-arm64 (push) Successful in 1m46s
Release / push-amd64 (push) Successful in 2m50s
Release / push-arm64 (push) Successful in 2m24s
Release / push-manifest (push) Successful in 13s
Release / sync-to-hub-docker-io (push) Successful in 4m0s
2025-05-28 22:06:54 +00:00
67873d8a02
chore(deps): update davidanson/markdownlint-cli2-action action to v20
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 9s
Build / build-amd64 (pull_request) Successful in 32s
Build / build-arm64 (pull_request) Successful in 1m35s
Lint Markdown files / markdown-lint (push) Successful in 13s
Build / build-amd64 (push) Successful in 29s
Build / build-arm64 (push) Successful in 1m41s
2025-05-21 16:06:31 +00:00
57bd879c0f
chore(deps): update dependency helm/helm to v3.18.0
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 5s
Release / push-amd64 (push) Successful in 38s
Build / build-amd64 (push) Successful in 1m21s
Build / build-arm64 (push) Successful in 1m32s
Release / push-arm64 (push) Successful in 2m24s
Release / push-manifest (push) Successful in 13s
Release / sync-to-hub-docker-io (push) Successful in 2m38s
2025-05-21 16:44:30 +02:00
c095838ac3
fix(Makefile): get rid of unqualified container images
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 5s
Build / build-amd64 (push) Successful in 1m20s
Build / build-arm64 (push) Successful in 1m27s
2025-05-12 22:47:19 +02:00
e320fb8dfb
docs(README): migrate from docker.io to git.cryptic.systems
All checks were successful
Build / build-arm64 (push) Successful in 1m28s
Lint Markdown files / markdown-lint (push) Successful in 15s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 13s
Build / build-amd64 (push) Successful in 1m26s
2025-05-12 18:19:07 +02:00
b13112fa0e
style(markdownlint): update configuration
All checks were successful
Build / build-arm64 (push) Successful in 1m30s
Lint Markdown files / markdown-lint (push) Successful in 10s
Build / build-amd64 (push) Successful in 1m18s
2025-05-09 11:27:48 +02:00
5 changed files with 11 additions and 13 deletions

View File

@ -17,6 +17,6 @@ jobs:
- ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: DavidAnson/markdownlint-cli2-action@v19.1.0
- uses: DavidAnson/markdownlint-cli2-action@v20.0.0
with:
globs: '**/*.md'

View File

@ -121,8 +121,7 @@ MD041:
# MD044/proper-names - Proper names should have the correct capitalization
MD044:
# List of proper names
names:
- helm
names: []
# Include code blocks
code_blocks: false
@ -134,4 +133,4 @@ MD046:
# MD048/code-fence-style - Code fence style
MD048:
# Code fence syle
style: "backtick"
style: "backtick"

View File

@ -1,4 +1,4 @@
FROM docker.io/library/alpine:3.21.3
FROM docker.io/library/alpine:3.22.0
ARG HELM_VERSION

View File

@ -1,6 +1,6 @@
# HELM_VERSION
# Only required to install a specify version
HELM_VERSION?=v3.17.3 # renovate: datasource=github-releases depName=helm/helm
HELM_VERSION?=v3.18.1 # renovate: datasource=github-releases depName=helm/helm
# CONTAINER_RUNTIME
# The CONTAINER_RUNTIME variable will be used to specified the path to a
@ -27,7 +27,6 @@ container-image/build:
--no-cache \
--pull \
--tag ${HELM_IMAGE_FULLY_QUALIFIED} \
--tag \
.
# DELETE CONTAINER IMAGE

View File

@ -2,14 +2,14 @@
[![Docker Pulls](https://img.shields.io/docker/pulls/volkerraschek/helm)](https://hub.docker.com/r/volkerraschek/helm)
This project contains all sources to build the container image `docker.io/volkerraschek/helm`. The primary goal of this
project is to package the binary `helm` as container image to provide the functionally for CI/CD workflows. The source
code of the binary can be found in the upstream project of [helm](github.com/helm/helm).
This project contains all sources to build the container image `git.cryptic.systems/volker.raschek/helm`. The primary
goal of this project is to package the binary `helm` as container image to provide the functionally for CI/CD workflows.
The source code of the binary can be found in the upstream project of [helm](github.com/helm/helm).
## drone
Here is an example to lint, package and deploy a chart to chartmuseum via
`docker.io/volkerraschek/helm`.
`git.cryptic.systems/volker.raschek/helm`.
```yaml
kind: pipeline
@ -24,7 +24,7 @@ steps:
- name: helm lint
commands:
- helm lint
image: docker.io/volkerraschek/helm:latest
image: git.cryptic.systems/volker.raschek/helm:latest
resources:
limits:
cpu: 50
@ -50,7 +50,7 @@ steps:
from_secret: helm_repo_password
HELM_REPO_USERNAME:
from_secret: helm_repo_username
image: docker.io/volkerraschek/helm:latest
image: git.cryptic.systems/volker.raschek/helm:latest
resources:
limits:
cpu: 50