Skip to content

Commit

Permalink
Add defaults enable/disable subcharts
Browse files Browse the repository at this point in the history
  • Loading branch information
BWibo committed Feb 9, 2023
1 parent 1376178 commit 69a68e3
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,17 @@ Versions are prefixed with `sddi-ckan-` due to usage of
[chart-releaser-action](https://github.com/helm/chart-releaser-action).
For releases `< 1.0.0` minor version step indicate breaking changes.

## [unreleased] - YYYY-MM-DD
## [sddi-ckan-0.3.1] - 2023-02-09

### Added

- Expose `beaker.session.key` config option

### Changed

### Removed
- Add some defaults for enabling/disabling subcharts

### Fixed

- Fixed wrong indent of `session.*` in CKAN `values.yml`

### Security

### Deprecated
Expand Down Expand Up @@ -85,6 +84,7 @@ For releases `< 1.0.0` minor version step indicate breaking changes.

### Deprecated

[sddi-ckan-0.3.1]: https://github.com/tum-gis/sddi-ckan-k8s/compare/sddi-ckan-0.3.0...sddi-ckan-0.3.1
[sddi-ckan-0.3.0]: https://github.com/tum-gis/sddi-ckan-k8s/compare/sddi-ckan-0.2.2...sddi-ckan-0.3.0
[sddi-ckan-0.2.2]: https://github.com/tum-gis/sddi-ckan-k8s/compare/sddi-ckan-0.2.1...sddi-ckan-0.2.2
[sddi-ckan-0.2.1]: https://github.com/tum-gis/sddi-ckan-k8s/compare/sddi-ckan-0.2.0...sddi-ckan-0.2.1
Expand Down
2 changes: 1 addition & 1 deletion charts/sddi-ckan/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sources:
- https://github.com/tum-gis/sddi-ckan-k8s
- https://www.asg.ed.tum.de/en/gis/projects/smart-district-data-infrastructure

version: 0.3.0
version: 0.3.1
appVersion: "0.0.1"
kubeVersion: ">= 1.23.0"

Expand Down
5 changes: 4 additions & 1 deletion charts/sddi-ckan/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sddi-ckan

![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.1](https://img.shields.io/badge/AppVersion-0.0.1-informational?style=flat-square)
![Version: 0.3.1](https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.1](https://img.shields.io/badge/AppVersion-0.0.1-informational?style=flat-square)

Helm Chart for a SDDI enabled CKAN catalog. See [CHANGELOG](https://github.com/tum-gis/sddi-ckan-k8s/blob/main/CHANGELOG.md) for changes.

Expand Down Expand Up @@ -36,6 +36,8 @@ Kubernetes: `>= 1.23.0`

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| cert-manager.enabled | bool | `false` | Enable/disable cert-manager. |
| certIssuer.enabled | bool | `true` | Enable/disable namespace Issuers for cert-manager. |
| datapusher.enabled | bool | `true` | Enable/disable Datapusher |
| fullnameOverride | string | `""` | Override fullname |
| global.datastore.auth.ro.password | string | `"changeMe"` | CKAN datastore database read-only password. This is used in database charts for CKAN database initialization. If set, this values will overwrite the value in the database chart. |
Expand All @@ -55,6 +57,7 @@ Kubernetes: `>= 1.23.0`
| global.ingress.certManager.issuerType | string | `"namespace"` | Type of [cert-manager](https://cert-manager.io/docs/) Issuer: Use either "namespace" or "cluster". |
| global.ingress.className | string | `"nginx"` | Name of the [IngressClass](https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-class) to use in Ingress routes. |
| global.ingress.domains | list | `["localhost"]` | List of [FQDNs](https://de.wikipedia.org/wiki/Fully-Qualified_Host_Name) for this Ingress. Note: All FQDNs will be used for Ingress hosts and TLS certificate. The global setting overwrites this setting in subcharts. |
| ingress-nginx.enabled | bool | `false` | Enable/disable Nginx ingress controller. |
| nameOverride | string | `""` | Override name |
| postgis.enabled | bool | `true` | Enable/disable database instance. Disable, if an external database is used. |
| redis.enabled | bool | `true` | Enable/disable Redis instance. Disable, if an external Redis instance is used. |
Expand Down
12 changes: 12 additions & 0 deletions charts/sddi-ckan/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,15 @@ redis:
datapusher:
# -- Enable/disable Datapusher
enabled: true

ingress-nginx:
# -- Enable/disable Nginx ingress controller.
enabled: false

cert-manager:
# -- Enable/disable cert-manager.
enabled: false

certIssuer:
# -- Enable/disable namespace Issuers for cert-manager.
enabled: true

0 comments on commit 69a68e3

Please sign in to comment.