Official Helm charts repository for Lychee projects.
Add the Helm repository:
helm repo add lychee https://juanjitech.github.io/lychee-charts/charts
helm repo updateSearch available charts:
# Search stable versions
helm search repo lychee
# Search all versions (including pre-release versions like -test, -alpha, -beta)
helm search repo lychee --devel
# Show all available versions
helm search repo lychee --versionsInstall a chart:
# Install latest stable version
helm install my-release lychee/lychee-moments-plus
# Install with custom values
helm install my-release lychee/lychee-moments-plus -f values.yaml
# Install specific version
helm install my-release lychee/lychee-moments-plus --version 1.0.0
# Install pre-release version
helm install my-release lychee/lychee-moments-plus --version 0.1.0-test --develView chart information:
# Show chart details
helm show chart lychee/lychee-moments-plus
# Show chart values
helm show values lychee/lychee-moments-plus
# Show all chart information
helm show all lychee/lychee-moments-plus- lychee-moments-plus: Lychee Moments Plus backend service - DDD-based social moments platform built with Go and CloudWeGo Hertz
All available chart versions are listed in the index.yaml file, or you can browse the charts directory on GitHub.
To see all versions:
helm search repo lychee --versions --develThis repository is automatically updated by CI/CD pipelines from source repositories. When a version tag (e.g., v1.0.0) is pushed to a source repository, the workflow automatically:
- Builds and pushes the Docker image
- Packages the Helm chart
- Publishes the chart to this repository
- Updates the chart index
Charts are served via GitHub Pages at https://juanjitech.github.io/lychee-charts/charts/
This repository is managed automatically. To publish a new chart version:
- Update the chart in your source repository
- Push a version tag (e.g.,
git tag v1.0.0 && git push origin v1.0.0) - The CI/CD pipeline will automatically publish the chart here
Charts in this repository follow the licenses of their respective source projects.