Skip to content

Commit

Permalink
Publish repo on GitHub pages (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
tei-k authored May 9, 2021
1 parent add9315 commit fe9bd98
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/kubeval.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -o errexit
set -o pipefail

CHART_DIRS="$(ls charts)"
HELM_VERSION="v3.2.4"
HELM_VERSION="v3.5.2"

# install helm
curl --silent --show-error --fail --location --output get_helm.sh https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/release.yml
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
36 changes: 34 additions & 2 deletions README.md
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).

0 comments on commit fe9bd98

Please sign in to comment.