Skip to content
This repository has been archived by the owner on Nov 10, 2019. It is now read-only.

publish_helm_chart_to_repo #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
1 change: 1 addition & 0 deletions stable/publish-helm-chart/NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
## Notes
29 changes: 29 additions & 0 deletions stable/publish-helm-chart/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Codefresh Helm Plugin

Use Codefresh [Helm](https://helm.sh) plugin to publish a Helm chart to repository.

## Usage

Set required and optional environment variable and add the following step to your Codefresh pipeline:

```yaml
---
version: '1.0'

steps:

...

publish_to_repo:
image: codefresh/plugin-publish-helm-to-repo:0.1.2

...

```

## Environment Variables

- **required** `CHART_NAME` - Helm chart name
- **required** `CHART_REPO_URL` - Helm chart repository URL
- `CHART_VERSION` - application chart version to install
- `DEBUG` - print verbose output
24 changes: 24 additions & 0 deletions stable/publish-helm-chart/plugin.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
image: codefresh/plugin-publish-helm-chart
tag: 0.0.1
version: 0.1.0
description: Publish a Helm chart to repository
keywords:
- helm
- kubernetes
home: https://github.com/codefresh-io/cf-publish-helm-chart
sources:
- https://github.com/codefresh-io/cf-publish-helm-chart
maintainers: # (optional)
- name: Vladimir Zhuravlev
email: [email protected]
icon: https://avatars0.githubusercontent.com/u/29493517?v=4&s=400
envs:
- name: CHART_NAME
type: required
description: Helm chart name to release
- name: CHART_VERSION
description: application chart version to install
- name: CHART_REPO_URL
description: Helm chart repository URL
- name: DEBUG
description: print verbose install output