Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bsord/helm-push
Push local chart to hosted chart museum repository
https://github.com/bsord/helm-push
Last synced: 1 day ago
JSON representation
Push local chart to hosted chart museum repository
- Host: GitHub
- URL: https://github.com/bsord/helm-push
- Owner: bsord
- License: mit
- Created: 2020-09-04T05:00:19.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-07T11:59:25.000Z (3 months ago)
- Last Synced: 2024-10-08T23:17:29.388Z (about 1 month ago)
- Language: Shell
- Homepage:
- Size: 85.9 KB
- Stars: 14
- Watchers: 2
- Forks: 19
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - bsord/helm-push - Push local chart to hosted chart museum repository (others)
README
# Helm Push
![Build](https://github.com/bsord/helm-push/workflows/Build/badge.svg)
![GitHub last commit](https://img.shields.io/github/last-commit/bsord/helm-push.svg)
![License](https://img.shields.io/github/license/bsord/helm-push.svg?style=flat)Push a chart to a ChartMuseum or OCI compatible registry with Helm v3
## Usage
Using Token Auth with OCI Registry:
```yaml
steps:
- name: Push Helm chart to OCI compatible registry (Github)
uses: bsord/[email protected]
with:
useOCIRegistry: true
registry-url: oci://ghcr.io/${{ github.repository }}
username: bsord
access-token: ${{ secrets.REGISTRY_ACCESS_TOKEN }}
force: true
chart-folder: chart
```Using Token Auth with AWS ECR: (Feel free to use any AWS CLI action step of your choice)
```yaml
steps:
- name: AWS ECR Login
id: ecr_login
uses: KaMeHb-UA/aws-cli-action@v3
with:
command: aws ecr get-login-password- name: Push Helm chart to Amazon Elastic Container Registry (ECR)
uses: bsord/[email protected]
with:
useOCIRegistry: true
registry-url: oci://123456789123.dkr.ecr.eu-west-1.amazonaws.com
username: AWS
access-token: ${{ steps.ecr_login.outputs.result }}
chart-folder: chart
```Using Password Auth:
```yaml
steps:
- name: Push Helm Chart to ChartMuseum
uses: bsord/[email protected]
with:
username: ${{ secrets.HELM_USERNAME }}
password: ${{ secrets.HELM_PASSWORD }}
registry-url: 'https://h.cfcr.io/user_or_org/reponame'
force: true
chart-folder: chart
```Using Token Auth:
```yaml
steps:
- name: Push Helm Chart to ChartMuseum
uses: bsord/[email protected]
with:
access-token: ${{ secrets.HELM_API_KEY }}
registry-url: 'https://h.cfcr.io/user_or_org/reponame'
force: true
chart-folder: chart
```### Parameters
| Key | Value | Required | Default |
| ------------- |---------------------------------------------------------------------------------------------| ------------- | ------------- |
| `useOCIRegistry` | Push to OCI compatibly registry | No | false |
| `access-token` | API Token with Helm read/write permissions | **Yes** (if using token auth) | "" |
| `username` | Username for registry | **Yes** (if using pw auth) | "" |
| `password` | Password for registry | **Yes** (if using pw auth) | "" |
| `registry-url` | Registry url | **Yes** | "" |
| `chart-folder` | Relative path to chart folder to be published | No | chart |
| `force` | Force overwrite if version already exists | No | false |
| `update-dependencies` | Update dependencies from "Chart.yaml" to dir "charts/" before packaging | No | false |
| `add-repositories` | Optionally add list of Helm Repositories to add running `helm repo add $args` for each line | No | "" |## License
This project is distributed under the [MIT license](LICENSE.md).
## TODO