-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
69 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Release Helm Charts | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
env: | ||
HELM_VERSION: v3.5.2 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Configure Git | ||
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
- name: Install Helm | ||
uses: azure/setup-helm@v1 | ||
with: | ||
version: ${{ env.HELM_VERSION }} | ||
|
||
- name: Run chart-releaser | ||
uses: helm/[email protected] | ||
env: | ||
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CR_PAGES_BRANCH: main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,37 @@ | ||
# Helm Charts for Scalar DL | ||
# Scalar Helm Charts Repository | ||
|
||
This directory contain helm charts for scalardl. | ||
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Release Charts](https://github.com/scalar-labs/helm-charts/workflows/Release%20Helm%20Charts/badge.svg?branch=main) | ||
|
||
This directory contains the following helm charts. | ||
|
||
* [Scalar DL](./charts/scalardl/) | ||
* [Schema Loading for Scalar DL](./charts/schema-loading/) | ||
|
||
## Prerequisites | ||
|
||
* Kubernetes 1.19+ | ||
* Helm 3.5+ | ||
|
||
## Usage | ||
|
||
[Helm](https://helm.sh) must be installed to use the charts. | ||
Please refer to Helm's [documentation](https://helm.sh/docs/) to get started. | ||
|
||
Once Helm is set up properly, add the repo as follows: | ||
|
||
```console | ||
helm repo add scalar-labs https://scalar-labs.github.io/helm-charts | ||
``` | ||
|
||
You can then run `helm search repo scalar-labs` to see the Scalar charts. | ||
|
||
## Contributing | ||
|
||
This repo is mainly maintained by the Scalar Engineering Team, but of course we appreciate any help. | ||
|
||
* For asking questions, finding answers and helping other users, please go to [stackoverflow](https://stackoverflow.com/) and use [scalardl](https://stackoverflow.com/questions/tagged/scalardl) tag. | ||
* For filing bugs, suggesting improvements, or requesting new features, help us out by opening an issue. | ||
|
||
## License | ||
|
||
[Apache 2.0 License](https://github.com/scalar-labs/helm-charts/blob/main/LICENSE). |