CSRBot b860122b4b
All checks were successful
Build / build-amd64 (pull_request) Successful in 26s
Lint Markdown files / markdown-lint (pull_request) Successful in 4s
Build / build-arm64 (pull_request) Successful in 1m33s
chore(deps): update davidanson/markdownlint-cli2-action action to v20
2025-05-15 07:09:17 +00:00
2022-01-29 23:30:00 +01:00
2022-01-29 23:30:00 +01:00
2022-01-29 23:30:00 +01:00
2022-01-29 23:30:00 +01:00
2022-01-29 23:30:00 +01:00

helm

Docker Pulls

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.

drone

Here is an example to lint, package and deploy a chart to chartmuseum via git.cryptic.systems/volker.raschek/helm.

kind: pipeline
type: kubernetes
name: linter

platform:
  os: linux
  arch: amd64

steps:
- name: helm lint
  commands:
  - helm lint
  image: git.cryptic.systems/volker.raschek/helm:latest
  resources:
    limits:
      cpu: 50
      memory: 50M

---
kind: pipeline
type: kubernetes
name: release

platform:
  os: linux

steps:
- name: release-helm-chart
  commands:
  - helm plugin install https://github.com/chartmuseum/helm-push.git
  - helm repo add myrepo https://charts.example.com/myrepo
  - helm package --version ${DRONE_TAG} .
  - helm cm-push ${DRONE_REPO_NAME}-${DRONE_TAG}.tgz myrepo
  environment:
    HELM_REPO_PASSWORD:
      from_secret: helm_repo_password
    HELM_REPO_USERNAME:
      from_secret: helm_repo_username
  image: git.cryptic.systems/volker.raschek/helm:latest
  resources:
    limits:
      cpu: 50
      memory: 50M
trigger:
  event:
  - tag
Description
Source files of the container image volkerraschek/helm
https://hub.docker.com/repository/docker/volkerraschek/helm Readme 262 KiB
Languages
Makefile 73.4%
Dockerfile 26.6%