-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #228 from chgl/add-helm-chart
Added Helm chart for installing the server on Kubernetes
- Loading branch information
Showing
20 changed files
with
914 additions
and
1 deletion.
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,23 @@ | ||
name: str() | ||
home: str() | ||
version: str() | ||
apiVersion: str() | ||
appVersion: any(str(), num(), required=False) | ||
type: str() | ||
dependencies: any(required=False) | ||
description: str() | ||
keywords: list(str(), required=False) | ||
sources: list(str(), required=False) | ||
maintainers: list(include('maintainer'), required=False) | ||
icon: str(required=False) | ||
engine: str(required=False) | ||
condition: str(required=False) | ||
tags: str(required=False) | ||
deprecated: bool(required=False) | ||
kubeVersion: str(required=False) | ||
annotations: map(str(), str(), required=False) | ||
--- | ||
maintainer: | ||
name: str() | ||
email: str(required=False) | ||
url: str(required=False) |
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,17 @@ | ||
debug: true | ||
remote: origin | ||
lint-conf: .github/ct/lintconf.yaml | ||
chart-yaml-schema: .github/ct/chart-schema.yaml | ||
validate-maintainers: false | ||
validate-chart-schema: true | ||
validate-yaml: true | ||
check-version-increment: true | ||
chart-dirs: | ||
- charts | ||
helm-extra-args: --timeout 300s | ||
upgrade: true | ||
skip-missing-values: true | ||
release-label: release | ||
chart-repos: | ||
- bitnami=https://charts.bitnami.com/bitnami | ||
release-name-template: "helm-v{{ .Version }}" |
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,40 @@ | ||
--- | ||
rules: | ||
braces: | ||
min-spaces-inside: 0 | ||
max-spaces-inside: 0 | ||
min-spaces-inside-empty: -1 | ||
max-spaces-inside-empty: -1 | ||
brackets: | ||
min-spaces-inside: 0 | ||
max-spaces-inside: 0 | ||
min-spaces-inside-empty: -1 | ||
max-spaces-inside-empty: -1 | ||
colons: | ||
max-spaces-before: 0 | ||
max-spaces-after: 1 | ||
commas: | ||
max-spaces-before: 0 | ||
min-spaces-after: 1 | ||
max-spaces-after: 1 | ||
comments: | ||
require-starting-space: true | ||
min-spaces-from-content: 1 | ||
document-end: disable | ||
document-start: disable | ||
empty-lines: | ||
max: 2 | ||
max-start: 0 | ||
max-end: 0 | ||
hyphens: | ||
max-spaces-after: 1 | ||
indentation: | ||
spaces: consistent | ||
indent-sequences: whatever | ||
check-multi-line-strings: false | ||
key-duplicates: enable | ||
line-length: disable | ||
new-line-at-end-of-file: enable | ||
trailing-spaces: enable | ||
truthy: | ||
level: warning |
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,35 @@ | ||
name: Release Charts | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- "charts/**" | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-20.04 | ||
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: v3.4.0 | ||
- name: Add bitnami repo | ||
run: helm repo add bitnami https://charts.bitnami.com/bitnami | ||
- name: Update dependencies | ||
run: find charts/ ! -path charts/ -maxdepth 1 -type d -exec helm dependency update {} \; | ||
- name: Run chart-releaser | ||
uses: helm/[email protected] | ||
with: | ||
config: .github/ct/ct.yaml | ||
env: | ||
CR_TOKEN: "${{ secrets.GITHUB_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Lint and Test Charts | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- "charts/**" | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-20.04 | ||
container: ghcr.io/chgl/kube-powertools:latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Update dependencies | ||
run: find charts/ ! -path charts/ -maxdepth 1 -type d -exec helm dependency update {} \; | ||
- name: Run chart-testing (lint) | ||
run: ct lint --config .github/ct/ct.yaml | ||
- name: Run Powerlint | ||
run: chart-powerlint.sh | ||
|
||
test: | ||
runs-on: ubuntu-20.04 | ||
needs: | ||
- lint | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Helm | ||
uses: azure/setup-helm@v1 | ||
with: | ||
version: v3.5.2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
- name: Set up chart-testing | ||
uses: helm/[email protected] | ||
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
run: | | ||
changed=$(ct list-changed) | ||
if [[ -n "$changed" ]]; then | ||
echo "::set-output name=changed::true" | ||
fi | ||
- name: Create k8s Kind Cluster | ||
uses: helm/[email protected] | ||
if: steps.list-changed.outputs.changed == 'true' | ||
- name: Run chart-testing (install) | ||
run: ct install --config .github/ct/ct.yaml |
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,41 @@ | ||
# Charts | ||
|
||
> A collection of Helm charts | ||
```sh | ||
helm repo add hapifhir https://hapifhir.github.io/charts | ||
helm repo update | ||
``` | ||
|
||
## Development | ||
|
||
1. Make changes to the charts | ||
|
||
1. Mount the folder in the [kube-powertools](https://github.com/chgl/kube-powertools) container to easily run linters and checks | ||
|
||
```sh | ||
docker run --rm -it -v $PWD:/usr/src/app ghcr.io/chgl/kube-powertools:latest | ||
``` | ||
|
||
1. Run chart-testing and the `chart-powerlint.sh` script to lint the chart | ||
|
||
```sh | ||
ct lint --config .github/ct/ct.yaml && chart-powerlint.sh | ||
``` | ||
|
||
1. (Optional) View the results of the [polaris audit check](https://github.com/FairwindsOps/polaris) in your browser | ||
|
||
```sh | ||
$ docker run --rm -it -p 9090:8080 -v $PWD:/usr/src/app ghcr.io/chgl/kube-powertools:latest | ||
bash-5.0: helm template charts/fhir-server/ | polaris dashboard --audit-path - | ||
``` | ||
|
||
You can now open your browser at <http://localhost:9090> and see the results and recommendations. | ||
|
||
1. Run `generate-docs.sh` to auto-generate an updated README | ||
|
||
```sh | ||
generate-docs.sh | ||
``` | ||
|
||
1. Bump the version in the changed Chart.yaml according to SemVer (The `ct lint` step above will complain if you forget to update the version.) |
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,23 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*.orig | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ |
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 @@ | ||
dependencies: | ||
- name: postgresql | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 10.3.16 | ||
digest: sha256:a45816f0855c6d4b1d66384ac36db99e0378f24663d02791006f815ff9d49245 | ||
generated: "2021-04-09T15:11:17.790703505Z" |
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,13 @@ | ||
apiVersion: v2 | ||
name: hapi-fhir-jpaserver | ||
description: A Helm chart for deploying the HAPI FHIR JPA server starter on Kubernetes. | ||
type: application | ||
home: https://github.com/hapifhir/hapi-fhir-jpaserver-starter | ||
sources: | ||
- https://github.com/hapifhir/hapi-fhir-jpaserver-starter | ||
dependencies: | ||
- name: postgresql | ||
version: 10.3.16 | ||
repository: https://charts.bitnami.com/bitnami | ||
condition: postgresql.enabled | ||
version: 0.2.0 |
Oops, something went wrong.