Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jlegrone/helm-starter
Create new Helm charts using existing charts as a blueprints
https://github.com/jlegrone/helm-starter
helm helm-plugin kubernetes
Last synced: 3 months ago
JSON representation
Create new Helm charts using existing charts as a blueprints
- Host: GitHub
- URL: https://github.com/jlegrone/helm-starter
- Owner: jlegrone
- License: apache-2.0
- Created: 2018-04-14T21:52:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-12T14:09:17.000Z (about 6 years ago)
- Last Synced: 2024-06-20T11:07:27.732Z (7 months ago)
- Topics: helm, helm-plugin, kubernetes
- Language: Shell
- Homepage:
- Size: 7.81 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# helm-starter
A [Helm starter](https://docs.helm.sh/developing_charts/#chart-starter-packs) is a blueprint that can be used when creating a new chart.
Starters themselves are helm charts. Some examples are available here:
https://github.com/jlegrone/helm-blueprints
## Getting Started
Install the plugin:
```bash
helm plugin install https://github.com/jlegrone/helm-starter.git
```Optionally, add a Helm repository containing starter charts:
```bash
helm repo add blueprints https://jlegrone.github.io/helm-blueprints
```## Usage
Create a new chart from an existing template:
```bash
# Create a new chart "mychart" with the "blueprints/statefulset" starter chart
helm starter create-from blueprints/statefulset mychart
```View other commands and usage instructions:
```bash
helm starter help
```