Compare commits

..

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

5 changed files with 14 additions and 12 deletions

View File

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

View File

@ -121,7 +121,8 @@ MD041:
# MD044/proper-names - Proper names should have the correct capitalization
MD044:
# List of proper names
names: []
names:
- helm
# Include code blocks
code_blocks: false
@ -133,4 +134,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.22.0
FROM docker.io/library/alpine:3.21.3
ARG HELM_VERSION

View File

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

View File

@ -1,15 +1,15 @@
# helm
[![Docker Pulls](https://img.shields.io/docker/pulls/volkerraschek/helm)](https://hub.docker.com/r/volkerraschek/helm)
[![Build Status](https://drone.cryptic.systems/api/badges/volker.raschek/helm-docker/status.svg)](https://drone.cryptic.systems/volker.raschek/helm-docker)
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).
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).
## drone
Here is an example to lint, package and deploy a chart to chartmuseum via
`git.cryptic.systems/volker.raschek/helm`.
`docker.io/volkerraschek/helm`.
```yaml
kind: pipeline
@ -24,7 +24,7 @@ steps:
- name: helm lint
commands:
- helm lint
image: git.cryptic.systems/volker.raschek/helm:latest
image: docker.io/volkerraschek/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: git.cryptic.systems/volker.raschek/helm:latest
image: docker.io/volkerraschek/helm:latest
resources:
limits:
cpu: 50