-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Issue#59 task prepare this repository to be available on artifact hub (#65) * Fixes [#59,#58] * Issue#27 py csw single microservice (#68) issue#27_csw_single_microsservice * Issue#67 separate site url related settings from ingress config (#69) issue#67_separate_site_url_related_settings_from_ingress_config * Provide confidential values as secret (#71) * WIP: Provide confidential values as secret * Fix parameter names in comment * Provide demo credentials as base64 * Add named secret in values.yaml with default content * Remove secret boilerplate in values.yaml * Configure secret creation via flag * Enhance secret configuration - Use existingSecretName to configure secret via external secret - rabbitmq uses its own naming syntax. We show them for convenience - fixing external database property Postgres secrets for external databases has to be added still * Fix yaml syntax * Fix yaml and property refs * Adds configurable secret to external database * Adjust minikube values * Resolve go template issues * Update documentation * Fix wording * release 1.0.0 final changes [geonode 4.1.2] (#74) release 1.0.0 * Issue#72 bug celery container is not starting properly and exiting right away (#76) * release 1.0.0 * fixing release build (#78) * added github token to install helm --------- Co-authored-by: Henning Bredel <[email protected]>
- Loading branch information
1 parent
a7a7ce8
commit 2044437
Showing
56 changed files
with
804 additions
and
245 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 |
---|---|---|
|
@@ -19,9 +19,9 @@ jobs: | |
with: | ||
version: '3.12.0' # default is latest (stable) | ||
- name: build dependencies | ||
run: helm dependency update deployment/geonode/ | ||
run: helm dependency update charts/geonode/ | ||
- name: helm-check | ||
uses: igabaydulin/[email protected] | ||
env: | ||
CHART_LOCATION: ./deployment/geonode/ | ||
CHART_VALUES: ./deployment/geonode/values.yaml | ||
CHART_LOCATION: ./charts/geonode/ | ||
CHART_VALUES: ./charts/geonode/values.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Release Charts | ||
|
||
on: | ||
push: | ||
branches: | ||
- issue#77_bug_missing_github_token_when_building_gh_page_for_usage_in_artifacts | ||
|
||
jobs: | ||
release: | ||
permissions: | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
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@v3 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Run chart-releaser | ||
uses: helm/[email protected] | ||
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
localtest | ||
my-values.yaml | ||
**/Chart.lock | ||
deployment/geonode/charts/*.tgz | ||
deployment/geonode/Chart.lock | ||
charts/*/charts | ||
.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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
repos: | ||
- repo: https://github.com/norwoodj/helm-docs | ||
rev: v1.2.0 | ||
hooks: | ||
- id: helm-docs | ||
args: | ||
# Make the tool search for charts only under the `example-charts` directory | ||
- --chart-search-root=deployment/geonode | ||
- repo: https://github.com/norwoodj/helm-docs | ||
rev: v1.2.0 | ||
hooks: | ||
- id: helm-docs | ||
args: | ||
# Make the tool search for charts only under the `example-charts` directory | ||
- --chart-search-root=charts/geonode | ||
|
||
# The `./` makes it relative to the chart-search-root set above | ||
#- --template-files=./_templates.gotmpl | ||
# The `./` makes it relative to the chart-search-root set above | ||
#- --template-files=./_templates.gotmpl | ||
|
||
# Repeating the flag adds this to the list, now [./_templates.gotmpl, README.md.gotmpl] | ||
# A base filename makes it relative to each chart directory found | ||
#- --template-files=README.md.gotmpl | ||
# Repeating the flag adds this to the list, now [./_templates.gotmpl, README.md.gotmpl] | ||
# A base filename makes it relative to each chart directory found | ||
#- --template-files=README.md.gotmpl |
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
File renamed without changes.
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,21 @@ | ||
# 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 | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj |
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,54 @@ | ||
apiVersion: v2 | ||
name: geonode-k8s | ||
version: 4.1.0 | ||
description: Helm Chart for Geonode a web-based application and platform for developing geospatial information systems (GIS) and for deploying spatial data infrastructures (SDI) | ||
keywords: | ||
- geonode | ||
- geospatial | ||
- geodata | ||
- SDI | ||
- http | ||
- web | ||
- python | ||
- geoserver | ||
- postresql | ||
- postgis | ||
- rabbitmq | ||
- memcached | ||
- django | ||
icon: https://www.osgeo.org/wp-content/uploads/GeoNode-370x206.png | ||
annotations: | ||
artifacthub.io/links: | | ||
- name: Chart Source | ||
url: https://github.com/zalf-rdm/geonode-k8s/ | ||
- name: Geonode | ||
url: https://www.geonode.org/ | ||
- name: support | ||
url: https://github.com/zalf-rdm/geonode-k8s/issues | ||
artifacthub.io/category: "storage" | ||
artifacthub.io/license: "GPL3" | ||
home: https://geonode.org/ | ||
sources: | ||
- https://github.com/zalf-rdm/geonode-k8s | ||
- https://github.com/geonode/geonode | ||
maintainers: | ||
- name: mwallschlaeger | ||
email: [email protected] | ||
url: https://github.com/mwallschlaeger | ||
dependencies: | ||
- name: postgres-operator-ui | ||
version: ~1.9.0 | ||
repository: https://opensource.zalando.com/postgres-operator/charts/postgres-operator-ui/ | ||
condition: postgres-operator-ui.enabled | ||
- name: postgres-operator | ||
version: ~1.9.0 | ||
repository: https://opensource.zalando.com/postgres-operator/charts/postgres-operator/ | ||
condition: postgres-operator.enabled | ||
- name: rabbitmq | ||
version: ~10.1.7 | ||
repository: https://charts.bitnami.com/bitnami | ||
condition: rabbitmq.enabled | ||
- name: memcached | ||
repository: https://charts.bitnami.com/bitnami | ||
condition: geonode.memcached.enaled | ||
version: ~6.x.x |
Oops, something went wrong.