-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Helm Chart for Auspice * Update README.md (#49) * Update README.md * Delete auspice.yaml * adding a job to create indices so guppy pod can run on startup * Fixed values.yaml formatting (#52) * Fixed values.yaml formatting * adding common library chart to gen3 umbrella chart * forgot to update chart.lock file * adding small changes to the weight and hooks for the startup jobs to play nice with umbrella chart * feat(autodoc): add helm docs * add helm docs * Orchestration updates * Add useryaml, delete hooks, delete elb * Fix wts, hatchery on laptop * Add useryaml, delete hooks, delete elb * Fix wts, hatchery on laptop * Removed a space between .service and "-dbcreds" * Update _postgres_secrets.tpl * Attempted to wrap cat in a nospace to look up secrets * Trying another method of concatenation * Trying to fix the same concatenation * Add postgres as subchart, and update portal image * Update default values for gen3 umbrella * Fix dbsecret random generation * Read DB strings from env vars * Add env vars to useryaml job * Move sheepdog init job to init container * Initial indexd env var db string work Co-authored-by: Jawad Qureshi <[email protected]> Co-authored-by: J. Q <[email protected]> * - adding a job to gen3 helm chart that will upload a pgdump or elasticsearch dump to es or dbs (metadata, sheepdog, indexd) - corrected small issue with metadata values * Add WTS OIDC job, Read DB connection from env vars (#66) * Add wts OIDC job, all db connection is read from env * Add alb capabilites to ingress * Fix fence-config * adding a configuration file for argocd to our helm charts * fixing argocd security * updating typo * adding the dependency for the gen3-db-restore job to the gen3 umbrella chart * forgot to update the chart.lock * turning the default to false for the restore db job for now so we can test argo * (fix): Clusterrole naming, hatchery manifest templating (#68) * CI and Documentation updates (#72) * (docs/ci): Add documentation, and CI * Add automated documentation using helm-docs in pre-commit hooks (#71) * (docs): Add helm-docs in pre-commit hooks * (ci): Bump up all chart versions (#73) * (ci): Bump up all chart dependencies * (ci): Bump up all chart dependencies * (ci): Add linting of all charts (#75) * (ci): Add linting of charts Co-authored-by: Ajo Augustine <[email protected]> Co-authored-by: EliseCastle23 <[email protected]> Co-authored-by: Aidan Hilt <[email protected]> Co-authored-by: EliseCastle23 <[email protected]> Co-authored-by: René Pollard <[email protected]>
- Loading branch information
1 parent
56ef406
commit 9ccd25c
Showing
174 changed files
with
6,696 additions
and
2,195 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,10 @@ | ||
remote: origin | ||
target-branch: master | ||
chart-dirs: | ||
- helm | ||
chart-repos: | ||
- bitnami=https://charts.bitnami.com/bitnami | ||
helm-extra-args: --timeout 600s | ||
check-version-increment: true | ||
debug: false | ||
validate-maintainers: 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,50 @@ | ||
name: Lint and Test Charts | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
lint-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Helm | ||
uses: azure/setup-helm@v3 | ||
with: | ||
version: v3.10.0 | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
check-latest: true | ||
|
||
- name: Set up chart-testing | ||
uses: helm/[email protected] | ||
|
||
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
run: | | ||
changed=$(ct list-changed --config .github/ct.yaml) | ||
if [[ -n "$changed" ]]; then | ||
echo "::set-output name=changed::true" | ||
fi | ||
- name: Run chart-testing (lint) | ||
run: ct lint --config .github/ct.yaml | ||
|
||
# deploy-charts-to-kind: | ||
# name: ${{ matrix.environments }} - gen3 data portal build | ||
# timeout-minutes: 20 | ||
# runs-on: ubuntu-latest | ||
# needs: [get-changes-for-envs] | ||
# if: ${{ needs.get-changes-for-envs.outputs.matrix != '[]' && needs.get-changes-for-envs.outputs.matrix != '' }} | ||
# steps: | ||
# - name: Create kind cluster | ||
# uses: helm/[email protected] | ||
# if: steps.list-changed.outputs.changed == 'true' | ||
|
||
# - name: Run chart-testing (install) | ||
# run: ct install |
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 |
---|---|---|
|
@@ -4,6 +4,8 @@ on: | |
push: | ||
branches: | ||
- master | ||
env: | ||
HELM_DOCS_VERSION: "1.7.0" | ||
|
||
jobs: | ||
release: | ||
|
@@ -20,13 +22,21 @@ jobs: | |
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
- name: Install Helm | ||
uses: azure/setup-helm@v1 | ||
uses: azure/setup-helm@v3 | ||
with: | ||
version: v3.8.1 | ||
version: v3.10.0 | ||
|
||
- name: Install Helm-docs | ||
run: | | ||
cd /tmp | ||
wget https://github.com/norwoodj/helm-docs/releases/download/v${{env.HELM_DOCS_VERSION}}/helm-docs_${{env.HELM_DOCS_VERSION}}_Linux_x86_64.tar.gz | ||
tar -xvf helm-docs_${{env.HELM_DOCS_VERSION}}_Linux_x86_64.tar.gz | ||
sudo mv helm-docs /usr/local/sbin | ||
- name: Run chart-releaser | ||
uses: helm/[email protected].0 | ||
uses: helm/[email protected].1 | ||
with: | ||
charts_dir: helm | ||
env: | ||
|
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
Oops, something went wrong.