Source files of the container image volkerraschek/helm https://hub.docker.com/repository/docker/volkerraschek/helm
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
CSRBot c89fa99e2a
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
chore(deps): update git.cryptic.systems/volker.raschek/markdownlint docker tag to v0.37.0
3 days ago
.dockerignore Initial Commit 2 years ago
.drone.yml chore(deps): update git.cryptic.systems/volker.raschek/markdownlint docker tag to v0.37.0 3 days ago
.editorconfig Initial Commit 2 years ago
.gitattributes Initial Commit 2 years ago
.gitignore Initial Commit 2 years ago
.markdownlint.yaml Initial Commit 2 years ago
Dockerfile chore(deps): update dependency docker.io/library/alpine to v3.18.3 2 months ago
LICENSE Initial Commit 2 years ago
Makefile chore(deps): update dependency helm/helm to v3.12.3 2 months ago
README.md doc(README): description, drone example 2 years ago
manifest.tmpl fix(ci): migrate to git.cryptic.systems 3 months ago
renovate.json fix(renovate): exclude updating docker.io/plugins/docker 3 weeks ago

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