Source files of the container image volkerraschek/helm https://hub.docker.com/repository/docker/volkerraschek/helm
Go to file
CSRBot 0548de5603
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
chore(deps): update dependency helm/helm to v3.13.1
2023-10-18 03:02:37 +02:00
.dockerignore Initial Commit 2022-01-29 23:30:00 +01:00
.drone.yml core(deps): update git.cryptic.systems/volker.raschek/drone-email to 0.1.5 2023-10-01 23:00:41 +02:00
.editorconfig Initial Commit 2022-01-29 23:30:00 +01:00
.gitattributes Initial Commit 2022-01-29 23:30:00 +01:00
.gitignore Initial Commit 2022-01-29 23:30:00 +01:00
.markdownlint.yaml Initial Commit 2022-01-29 23:30:00 +01:00
Dockerfile chore(deps): update docker.io/library/alpine docker tag to v3.18.4 2023-09-29 00:18:14 +02:00
LICENSE Initial Commit 2022-01-29 23:30:00 +01:00
Makefile chore(deps): update dependency helm/helm to v3.13.1 2023-10-18 03:02:37 +02:00
README.md doc(README): description, drone example 2022-01-30 16:06:00 +01:00
manifest.tmpl fix(ci): migrate to git.cryptic.systems 2023-06-15 15:36:50 +02:00
renovate.json fix(renovate): exclude updating docker.io/plugins/docker 2023-09-03 16:15:53 +02:00

README.md

helm-docker

Build Status Docker Pulls

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.

drone

Here is an example to lint, package and deploy a chart to chartmuseum via docker.io/volkerraschek/helm.

kind: pipeline
type: kubernetes
name: linter

platform:
  os: linux
  arch: amd64

steps:
- name: helm lint
  commands:
  - helm lint
  image: docker.io/volkerraschek/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: docker.io/volkerraschek/helm:latest
  resources:
    limits:
      cpu: 50
      memory: 50M
trigger:
  event:
  - tag