-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
bf8079e
commit 294cc06
Showing
11 changed files
with
379 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
version: 2.1 | ||
jobs: | ||
lint-scripts: | ||
docker: | ||
- image: koalaman/shellcheck-alpine | ||
steps: | ||
- checkout | ||
- run: | ||
command: shellcheck -x test/e2e-kind.sh | ||
|
||
lint-charts: | ||
docker: | ||
- image: quay.io/helmpack/chart-testing:v3.0.0-rc.1 | ||
steps: | ||
- checkout | ||
- run: | ||
command: ct lint --config test/ct.yaml | ||
|
||
install-charts: | ||
machine: true | ||
steps: | ||
- checkout | ||
- run: | ||
command: test/e2e-kind.sh | ||
|
||
workflows: | ||
version: 2 | ||
lint-install: | ||
jobs: | ||
- lint-scripts | ||
- lint-charts | ||
- install-charts |
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,31 @@ | ||
name: Release Charts | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Fetch history | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Configure Git | ||
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
# See https://github.com/helm/chart-releaser-action/issues/6 | ||
- name: Install Helm | ||
run: | | ||
curl -fsSLo get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | ||
chmod 700 get_helm.sh | ||
./get_helm.sh | ||
- name: Run chart-releaser | ||
uses: helm/[email protected] | ||
env: | ||
CR_TOKEN: "${{ secrets.CR_TOKEN }}" |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
apiVersion: v2 | ||
name: judge0 | ||
version: 1.0.0 | ||
version: 1.0.11 | ||
appVersion: 1.5.0 | ||
description: Helm implementation of Judge0 | Free ,robust and scalable open-source online code execution system. | ||
description: Helm implementation of Judge0 | Free,robust and scalable open-source online code execution system. | ||
keywords: | ||
- online-judge | ||
- online-compiler | ||
|
@@ -22,14 +22,14 @@ dependencies: | |
repository: https://kubernetes-charts.storage.googleapis.com/ | ||
condition: postgresql.enabled | ||
tags: | ||
- judge0-databse | ||
- judge0-database | ||
- name: redis | ||
version: 10.2.0 | ||
repository: https://kubernetes-charts.storage.googleapis.com/ | ||
condition: redis.enabled | ||
tags: | ||
- judge0-redis | ||
maintainers: | ||
- name: Saikat Chakrabortty | ||
- name: saikatharryc | ||
email: [email protected] | ||
url: https://github.com/saikatharryc/ | ||
url: https://github.com/saikatharryc/ |
Empty file.
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
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,6 @@ | ||
chart-dirs: | ||
- charts | ||
chart-repos: | ||
- incubator=https://kubernetes-charts-incubator.storage.googleapis.com/ | ||
- stable=https://kubernetes-charts.storage.googleapis.com/ | ||
helm-extra-args: --timeout 800s |
Oops, something went wrong.