diff --git a/Taskfile.yaml b/Taskfile.yaml index ae91bc282..d6d8be93f 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -55,4 +55,4 @@ tasks: deps: - task: setup:helm-docs cmds: - - "{{.LOCAL_BIN}}/helm-docs --chart-search-root charts/ --template-files=README.md.gotmpl --template-files=./_templates.gotmpl" \ No newline at end of file + - "{{.LOCAL_BIN}}/helm-docs --chart-search-root charts/ --template-files=README.md.gotmpl" \ No newline at end of file diff --git a/charts/account-operator-crds/README.md b/charts/account-operator-crds/README.md index e125c2f05..50a5c1f6d 100644 --- a/charts/account-operator-crds/README.md +++ b/charts/account-operator-crds/README.md @@ -1,23 +1,5 @@ # account-operator-crds -A Helm chart for Kubernetes - -![Version: 0.1.6](https://img.shields.io/badge/Version-0.1.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) - -## Configuration - -The chart supports the following configuration parameters in the table below. Additionally, default configuration parameters documented in [common/README.md](../common/README.md) are not explicitely listed in the table but are also supported. - -## Values - -Default configuration parameters, which can be overriden either globally or on a chart level are documented in [common/README.md](../common/README.md). - -| Key | Type | Default | Description | -|-----|------|---------|-------------| -| kcp.enabled | bool | `false` | Enable KCP | - -# account-operator-crds - ![Version: 0.1.6](https://img.shields.io/badge/Version-0.1.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) A Helm chart for Kubernetes diff --git a/charts/account-operator/README.md b/charts/account-operator/README.md index 58e4ef8c4..74a0c4ce3 100644 --- a/charts/account-operator/README.md +++ b/charts/account-operator/README.md @@ -1,51 +1,5 @@ # account-operator -A Helm chart for Kubernetes - -![Version: 0.4.21](https://img.shields.io/badge/Version-0.4.21-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.106.0](https://img.shields.io/badge/AppVersion-0.106.0-informational?style=flat-square) - -## Configuration - -The chart supports the following configuration parameters in the table below. Additionally, default configuration parameters documented in [common/README.md](../common/README.md) are not explicitely listed in the table but are also supported. - -## Values - -Default configuration parameters, which can be overriden either globally or on a chart level are documented in [common/README.md](../common/README.md). - -| Key | Type | Default | Description | -|-----|------|---------|-------------| -| crds.enabled | bool | `true` | Enable CRDs | -| deployment.specTemplate.annotations | object | `{}` | The annotations for the deployment | -| deployment.specTemplate.labels | object | `{}` | The labels for the deployment | -| image.name | string | `"ghcr.io/openmfp/account-operator"` | The image repository | -| image.tag | string | `"latest"` | The image tag | -| kcp | object | `{"enabled":false,"virtualWorkspaceUrl":""}` | The KCP configuration | -| kcp.enabled | bool | `false` | Enable KCP | -| kcp.virtualWorkspaceUrl | string | `""` | The URL for the virtual workspace | -| kubeconfigSecret | string | `""` | The secret for kubeconfig | -| logLevel | string | `"warn"` | The log level | -| security.mountServiceAccountToken | bool | `false` | Mount the service account token | -| subroutines.extension.enabled | bool | `true` | Enable extension subroutines | -| subroutines.extensionReady.enabled | bool | `true` | Enable extension ready subroutines | -| subroutines.fga.creatorRelation | string | `"owner"` | The creator relation for FGA | -| subroutines.fga.enabled | bool | `true` | Enable FGA subroutines | -| subroutines.fga.grpcAddr | string | `""` | The gRPC address for FGA | -| subroutines.fga.objectType | string | `"account"` | The object type for FGA | -| subroutines.fga.parentRelation | string | `"parent"` | The parent relation for FGA | -| subroutines.fga.rootNamespace | string | `"openmfp-root"` | The root namespace for FGA | -| subroutines.namespace.enabled | bool | `true` | Enable namespace subroutines | -| webhooks.certDir | string | `"/certs"` | The directory for webhook certificates | -| webhooks.enabled | bool | `false` | Enable webhooks | - -## Requirements - -| Repository | Name | Version | -|------------|------|---------| -| file://../account-operator-crds | account-operator-crds | 0.1.6 | -| file://../common | common | 0.1.5 | - -# account-operator - ![Version: 0.4.21](https://img.shields.io/badge/Version-0.4.21-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.106.0](https://img.shields.io/badge/AppVersion-0.106.0-informational?style=flat-square) A Helm chart for Kubernetes diff --git a/charts/common/README.md b/charts/common/README.md index b7f17e731..98ca8604f 100644 --- a/charts/common/README.md +++ b/charts/common/README.md @@ -13,16 +13,18 @@ The `common` chart is a library of common resources that are shared across all o The values in the `defaults:` section can be reused from other charts by using the lookup function "common.getKeyValue". It implements lookup on three levels: 1. Looks for `keyOverride` in the chart's values.yaml -2. Looks for `global.key` in the chart's values.yaml -3. Uses the `common.defaults.key` value from the table below. +2. Looks for `global.key` in the chart's or parent chart's values.yaml +3. Uses the `key` in the chart's values.yaml +4. Uses the `common.defaults.key` value from the table below. -1 has precendence over 2 over 3 respectively. This approach allows for individual charts to have minimal configuration, while still being able to override parameters locally. +1 has precendence over 2 over 3 over 4 respectively. This approach allows for individual charts to have minimal configuration, while still being able to override parameters locally. Example ``` -1) .Values.deployment.resources.limits.memoryOveride = 2048MB -2) .Values.global.deployment.resources.limits.memory = 1024MB -3) .Values.common.defaults.deployment.resources.limits.memory = default 512MB +1) .Values.deployment.resources.limits.memoryOveride = 4096MB +2) .Values.global.deployment.resources.limits.memory = 2048MB +3) .Values.deployment.resources.limits.memory = 1024MB +4) .Values.common.defaults.deployment.resources.limits.memory = default 512MB ``` | Key | Type | Default | Description | @@ -52,44 +54,4 @@ Example | defaults.securityContext.runAsGroup | int | `3000` | group id to run the container | | defaults.securityContext.runAsUser | int | `1000` | user id to run the container | -# common - -A Helm chart for Kubernetes - -![Version: 0.1.5](https://img.shields.io/badge/Version-0.1.5-informational?style=flat-square) ![Type: library](https://img.shields.io/badge/Type-library-informational?style=flat-square) - -## Configuration - -The chart supports the following configuration parameters in the table below. Additionally, default configuration parameters documented in [common/README.md](../common/README.md) are not explicitely listed in the table but are also supported. - -## Values - -Default configuration parameters, which can be overriden either globally or on a chart level are documented in [common/README.md](../common/README.md). - -| Key | Type | Default | Description | -|-----|------|---------|-------------| -| defaults.certManager.enabled | bool | `false` | toggle to enable/disable cert-manager | -| defaults.deployment.maxSurge | int | `5` | maxSurge | -| defaults.deployment.maxUnavailable | int | `0` | maxUnavailable | -| defaults.deployment.resources.limits | object | `{"cpu":"100m","memory":"512Mi"}` | cpu and memory limits for the deployment | -| defaults.deployment.resources.requests | object | `{"cpu":"40m","memory":"50Mi"}` | cpu and memory requests for the deployment | -| defaults.deployment.revisionHistoryLimit | int | `3` | deployment revision history limit | -| defaults.deployment.strategy | string | `"RollingUpdate"` | deployment strategy | -| defaults.externalSecrets.enabled | bool | `true` | toggle to enable/disable external-secrets | -| defaults.health.liveness | object | `{"failureThreshold":1,"path":"/healthz"}` | liveness probe parameters | -| defaults.health.periodSeconds | int | `10` | health period | -| defaults.health.port | int | `8081` | health port | -| defaults.health.readiness | object | `{"initialDelaySeconds":5,"path":"/readyz","periodSeconds":10}` | readiness probe parameters | -| defaults.health.startup | object | `{"failureThreshold":30,"path":"/readyz"}` | startup probe parameters | -| defaults.imagePullPolicy | string | `"Always"` | imagePullPolicy is the policy to use when pulling images for all charts | -| defaults.imagePullSecret | string | `"github"` | imagePullSecret is the name of the secret that holds the docker registry credentials | -| defaults.istio.enabled | bool | `false` | toggle to enable/disable istio | -| defaults.istio.gateway.name | string | `"gateway"` | name of the gateway | -| defaults.istio.https.enabled | bool | `true` | toggle to enable/disable https | -| defaults.istio.quitSidecar | bool | `true` | toggle sidecar injection | -| defaults.metrics.port | int | `8080` | metrics port | -| defaults.port | int | `8080` | service port | -| defaults.securityContext.fsGroup | int | `2000` | fsGroup id to run the container | -| defaults.securityContext.runAsGroup | int | `3000` | group id to run the container | -| defaults.securityContext.runAsUser | int | `1000` | user id to run the container | - +S \ No newline at end of file diff --git a/charts/common/README.md.gotmpl b/charts/common/README.md.gotmpl index 95f01c865..94146d84e 100644 --- a/charts/common/README.md.gotmpl +++ b/charts/common/README.md.gotmpl @@ -14,16 +14,18 @@ The `common` chart is a library of common resources that are shared across all o The values in the `defaults:` section can be reused from other charts by using the lookup function "common.getKeyValue". It implements lookup on three levels: 1. Looks for `keyOverride` in the chart's values.yaml -2. Looks for `global.key` in the chart's values.yaml -3. Uses the `common.defaults.key` value from the table below. +2. Looks for `global.key` in the chart's or parent chart's values.yaml +3. Uses the `key` in the chart's values.yaml +4. Uses the `common.defaults.key` value from the table below. -1 has precendence over 2 over 3 respectively. This approach allows for individual charts to have minimal configuration, while still being able to override parameters locally. +1 has precendence over 2 over 3 over 4 respectively. This approach allows for individual charts to have minimal configuration, while still being able to override parameters locally. Example ``` -1) .Values.deployment.resources.limits.memoryOveride = 2048MB -2) .Values.global.deployment.resources.limits.memory = 1024MB -3) .Values.common.defaults.deployment.resources.limits.memory = default 512MB +1) .Values.deployment.resources.limits.memoryOveride = 4096MB +2) .Values.global.deployment.resources.limits.memory = 2048MB +3) .Values.deployment.resources.limits.memory = 1024MB +4) .Values.common.defaults.deployment.resources.limits.memory = default 512MB ``` {{ template "chart.valuesTable" . }} diff --git a/charts/common/test-chart/charts/common-0.1.5.tgz b/charts/common/test-chart/charts/common-0.1.5.tgz index 844ff129a..2929fcf62 100644 Binary files a/charts/common/test-chart/charts/common-0.1.5.tgz and b/charts/common/test-chart/charts/common-0.1.5.tgz differ diff --git a/charts/example-content/README.MD b/charts/example-content/README.MD index 0de306dd9..b0913446c 100644 --- a/charts/example-content/README.MD +++ b/charts/example-content/README.MD @@ -1,12 +1,21 @@ -# Helm chart of the jukebox +# example-content -## Execute the linting in the pipeline +![Version: 0.110.6](https://img.shields.io/badge/Version-0.110.6-informational?style=flat-square) ![AppVersion: 0.124.0](https://img.shields.io/badge/AppVersion-0.124.0-informational?style=flat-square) -```shell -helm lint -f test-values.yaml -``` +Helm Chart for the openmfp Portal + +## Requirements + +| Repository | Name | Version | +|------------|------|---------| +| file://../common | common | 0.1.5 | + +## Values + +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| image.name | string | `"ghcr.io/openmfp/example-content"` | The image name | +| istio.virtualService.hosts[0] | string | `"your-host.com"` | | +| istio.virtualService.matchers[0].match[0].uri.exact | string | `"/ui/example-content"` | | +| istio.virtualService.matchers[0].match[1].uri.prefix | string | `"/ui/example-content/"` | | -## Debug the chart output -```shell -helm template --debug . -f test-values.yaml -``` diff --git a/charts/example-content/README.md b/charts/example-content/README.md deleted file mode 100644 index 4764f89ee..000000000 --- a/charts/example-content/README.md +++ /dev/null @@ -1,48 +0,0 @@ -# example-content - -Helm Chart for the openmfp Portal - -![Version: 0.110.5](https://img.shields.io/badge/Version-0.110.5-informational?style=flat-square) ![AppVersion: 0.124.0](https://img.shields.io/badge/AppVersion-0.124.0-informational?style=flat-square) - -## Configuration - -The chart supports the following configuration parameters in the table below. Additionally, default configuration parameters documented in [common/README.md](../common/README.md) are not explicitely listed in the table but are also supported. - -## Values - -Default configuration parameters, which can be overriden either globally or on a chart level are documented in [common/README.md](../common/README.md). - -| Key | Type | Default | Description | -|-----|------|---------|-------------| -| image.name | string | `"ghcr.io/openmfp/example-content"` | The image name | -| istio.virtualService.hosts[0] | string | `"your-host.com"` | | -| istio.virtualService.matchers[0].match[0].uri.exact | string | `"/ui/example-content"` | | -| istio.virtualService.matchers[0].match[1].uri.prefix | string | `"/ui/example-content/"` | | - -## Requirements - -| Repository | Name | Version | -|------------|------|---------| -| file://../common | common | 0.1.5 | - -# example-content - -![Version: 0.110.5](https://img.shields.io/badge/Version-0.110.5-informational?style=flat-square) ![AppVersion: 0.124.0](https://img.shields.io/badge/AppVersion-0.124.0-informational?style=flat-square) - -Helm Chart for the openmfp Portal - -## Requirements - -| Repository | Name | Version | -|------------|------|---------| -| file://../common | common | 0.1.5 | - -## Values - -| Key | Type | Default | Description | -|-----|------|---------|-------------| -| image.name | string | `"ghcr.io/openmfp/example-content"` | The image name | -| istio.virtualService.hosts[0] | string | `"your-host.com"` | | -| istio.virtualService.matchers[0].match[0].uri.exact | string | `"/ui/example-content"` | | -| istio.virtualService.matchers[0].match[1].uri.prefix | string | `"/ui/example-content/"` | | - diff --git a/charts/extension-manager-operator-crds/README.md b/charts/extension-manager-operator-crds/README.md index 72b4395a5..8ac00bcf6 100644 --- a/charts/extension-manager-operator-crds/README.md +++ b/charts/extension-manager-operator-crds/README.md @@ -1,22 +1,5 @@ # extension-manager-operator-crds -A Helm chart for Kubernetes - -![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) - -## Configuration - -The chart supports the following configuration parameters in the table below. Additionally, default configuration parameters documented in [common/README.md](../common/README.md) are not explicitely listed in the table but are also supported. - -## Values - -Default configuration parameters, which can be overriden either globally or on a chart level are documented in [common/README.md](../common/README.md). - -| Key | Type | Default | Description | -|-----|------|---------|-------------| - -# extension-manager-operator-crds - ![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) A Helm chart for Kubernetes diff --git a/charts/extension-manager-operator/README.md b/charts/extension-manager-operator/README.md index 399dc74db..4e552b051 100644 --- a/charts/extension-manager-operator/README.md +++ b/charts/extension-manager-operator/README.md @@ -1,33 +1,5 @@ # extension-manager-operator -A Helm chart for extension-manager-operator - -![Version: 0.22.34](https://img.shields.io/badge/Version-0.22.34-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.66.0](https://img.shields.io/badge/AppVersion-0.66.0-informational?style=flat-square) - -## Configuration - -The chart supports the following configuration parameters in the table below. Additionally, default configuration parameters documented in [common/README.md](../common/README.md) are not explicitely listed in the table but are also supported. - -## Values - -Default configuration parameters, which can be overriden either globally or on a chart level are documented in [common/README.md](../common/README.md). - -| Key | Type | Default | Description | -|-----|------|---------|-------------| -| commonAnnotations | object | `{}` | | -| crds.enabled | bool | `true` | | -| image.name | string | `"ghcr.io/openmfp/extension-content-operator"` | | -| image.tag | string | `"0.16.0"` | | - -## Requirements - -| Repository | Name | Version | -|------------|------|---------| -| file://../common | common | 0.1.5 | -| file://../extension-manager-operator-crds | extension-manager-operator-crds | 0.1.3 | - -# extension-manager-operator - ![Version: 0.22.34](https://img.shields.io/badge/Version-0.22.34-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.66.0](https://img.shields.io/badge/AppVersion-0.66.0-informational?style=flat-square) A Helm chart for extension-manager-operator diff --git a/charts/openmfp-crds/README.md b/charts/openmfp-crds/README.md index 784698e42..2e00052ba 100644 --- a/charts/openmfp-crds/README.md +++ b/charts/openmfp-crds/README.md @@ -1,30 +1,5 @@ # openmfp-crds -A chart containing CRD Definitions for OpenMFP - -![Version: 0.0.2](https://img.shields.io/badge/Version-0.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.0](https://img.shields.io/badge/AppVersion-0.0.0-informational?style=flat-square) - -## Configuration - -The chart supports the following configuration parameters in the table below. Additionally, default configuration parameters documented in [common/README.md](../common/README.md) are not explicitely listed in the table but are also supported. - -## Values - -Default configuration parameters, which can be overriden either globally or on a chart level are documented in [common/README.md](../common/README.md). - -| Key | Type | Default | Description | -|-----|------|---------|-------------| -| account-operator-crds.enabled | bool | `true` | | -| extension-content-operator-crds.enabled | bool | `true` | | - -## Requirements - -| Repository | Name | Version | -|------------|------|---------| -| oci://ghcr.io/openmfp/helm-charts | account-operator-crds | 0.1.5 | - -# openmfp-crds - ![Version: 0.0.2](https://img.shields.io/badge/Version-0.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.0](https://img.shields.io/badge/AppVersion-0.0.0-informational?style=flat-square) A chart containing CRD Definitions for OpenMFP diff --git a/charts/openmfp/Chart.lock b/charts/openmfp/Chart.lock index 74d7796ef..fde3e8b5f 100644 --- a/charts/openmfp/Chart.lock +++ b/charts/openmfp/Chart.lock @@ -1,9 +1,9 @@ dependencies: - name: example-content repository: oci://ghcr.io/openmfp/helm-charts - version: 0.110.4 + version: 0.110.5 - name: portal repository: oci://ghcr.io/openmfp/helm-charts - version: 0.69.125 -digest: sha256:77d64e439de76b28610afb0f4a90cef812a2c337ae1736230eaca9630f823d3f -generated: "2024-11-28T13:57:21.207142921Z" + version: 0.69.126 +digest: sha256:7588756eb8004b1ab314632413c9ffc0c2ca30b31a40a19341dd81af79c220dc +generated: "2024-11-28T18:10:55.890735059Z" diff --git a/charts/openmfp/Chart.yaml b/charts/openmfp/Chart.yaml index 4cd946af8..afd131d3e 100644 --- a/charts/openmfp/Chart.yaml +++ b/charts/openmfp/Chart.yaml @@ -7,10 +7,10 @@ appVersion: "0.0.0" dependencies: - name: example-content - version: 0.110.4 + version: 0.110.5 repository: oci://ghcr.io/openmfp/helm-charts condition: components.example-content.enabled - name: portal - version: 0.69.125 + version: 0.69.126 repository: oci://ghcr.io/openmfp/helm-charts condition: components.portal.enabled diff --git a/charts/openmfp/README.md b/charts/openmfp/README.md index 20bd0fcaa..ce1e866ae 100644 --- a/charts/openmfp/README.md +++ b/charts/openmfp/README.md @@ -1,32 +1,6 @@ # openmfp -The OpenMFP chart for Kubernetes - -![Version: 0.0.15](https://img.shields.io/badge/Version-0.0.15-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.0](https://img.shields.io/badge/AppVersion-0.0.0-informational?style=flat-square) - -## Configuration - -The chart supports the following configuration parameters in the table below. Additionally, default configuration parameters documented in [common/README.md](../common/README.md) are not explicitely listed in the table but are also supported. - -## Values - -Default configuration parameters, which can be overriden either globally or on a chart level are documented in [common/README.md](../common/README.md). - -| Key | Type | Default | Description | -|-----|------|---------|-------------| -| components.example-content.enabled | bool | `false` | | -| components.portal.enabled | bool | `true` | | - -## Requirements - -| Repository | Name | Version | -|------------|------|---------| -| oci://ghcr.io/openmfp/helm-charts | example-content | 0.110.4 | -| oci://ghcr.io/openmfp/helm-charts | portal | 0.69.125 | - -# openmfp - -![Version: 0.0.15](https://img.shields.io/badge/Version-0.0.15-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.0](https://img.shields.io/badge/AppVersion-0.0.0-informational?style=flat-square) +![Version: 0.0.18](https://img.shields.io/badge/Version-0.0.18-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.0](https://img.shields.io/badge/AppVersion-0.0.0-informational?style=flat-square) The OpenMFP chart for Kubernetes @@ -34,8 +8,8 @@ The OpenMFP chart for Kubernetes | Repository | Name | Version | |------------|------|---------| -| oci://ghcr.io/openmfp/helm-charts | example-content | 0.110.4 | -| oci://ghcr.io/openmfp/helm-charts | portal | 0.69.125 | +| oci://ghcr.io/openmfp/helm-charts | example-content | 0.110.5 | +| oci://ghcr.io/openmfp/helm-charts | portal | 0.69.126 | ## Values diff --git a/charts/openmfp/charts/example-content-0.110.4.tgz b/charts/openmfp/charts/example-content-0.110.4.tgz deleted file mode 100644 index 8e6e188cf..000000000 Binary files a/charts/openmfp/charts/example-content-0.110.4.tgz and /dev/null differ diff --git a/charts/openmfp/charts/example-content-0.110.5.tgz b/charts/openmfp/charts/example-content-0.110.5.tgz new file mode 100644 index 000000000..92bbab8de Binary files /dev/null and b/charts/openmfp/charts/example-content-0.110.5.tgz differ diff --git a/charts/openmfp/charts/portal-0.69.125.tgz b/charts/openmfp/charts/portal-0.69.125.tgz deleted file mode 100644 index b42af0f35..000000000 Binary files a/charts/openmfp/charts/portal-0.69.125.tgz and /dev/null differ diff --git a/charts/openmfp/charts/portal-0.69.126.tgz b/charts/openmfp/charts/portal-0.69.126.tgz new file mode 100644 index 000000000..6ea1b2d67 Binary files /dev/null and b/charts/openmfp/charts/portal-0.69.126.tgz differ diff --git a/charts/portal/Chart.yaml b/charts/portal/Chart.yaml index 05f46e115..674465668 100644 --- a/charts/portal/Chart.yaml +++ b/charts/portal/Chart.yaml @@ -1,9 +1,8 @@ apiVersion: v2 -appVersion: "0.203.0" +appVersion: "0.204.0" description: Helm Chart for the openmfp Portal name: portal version: 0.69.127 - dependencies: - name: common repository: file://../common diff --git a/charts/portal/README.MD b/charts/portal/README.MD index 0de306dd9..d82e0d065 100644 --- a/charts/portal/README.MD +++ b/charts/portal/README.MD @@ -1,12 +1,23 @@ -# Helm chart of the jukebox +# portal -## Execute the linting in the pipeline +![Version: 0.69.127](https://img.shields.io/badge/Version-0.69.127-informational?style=flat-square) ![AppVersion: 0.204.0](https://img.shields.io/badge/AppVersion-0.204.0-informational?style=flat-square) -```shell -helm lint -f test-values.yaml -``` +Helm Chart for the openmfp Portal + +## Requirements + +| Repository | Name | Version | +|------------|------|---------| +| file://../common | common | 0.1.5 | + +## Values + +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| featureToggles | string | `"enableSessionAutoRefresh=true"` | | +| http.protocol | string | `"https"` | | +| image.name | string | `"ghcr.io/openmfp/portal"` | | +| image.pullPolicyOverride | string | `"IfNotPresent"` | | +| importContent | bool | `true` | | +| validWebcomponentUrls | string | `".?"` | | -## Debug the chart output -```shell -helm template --debug . -f test-values.yaml -``` diff --git a/charts/portal/README.md b/charts/portal/README.md deleted file mode 100644 index bf83f1afa..000000000 --- a/charts/portal/README.md +++ /dev/null @@ -1,52 +0,0 @@ -# portal - -Helm Chart for the openmfp Portal - -![Version: 0.69.125](https://img.shields.io/badge/Version-0.69.125-informational?style=flat-square) ![AppVersion: 0.203.0](https://img.shields.io/badge/AppVersion-0.203.0-informational?style=flat-square) - -## Configuration - -The chart supports the following configuration parameters in the table below. Additionally, default configuration parameters documented in [common/README.md](../common/README.md) are not explicitely listed in the table but are also supported. - -## Values - -Default configuration parameters, which can be overriden either globally or on a chart level are documented in [common/README.md](../common/README.md). - -| Key | Type | Default | Description | -|-----|------|---------|-------------| -| featureToggles | string | `"enableSessionAutoRefresh=true"` | | -| http.protocol | string | `"https"` | | -| image.name | string | `"ghcr.io/openmfp/portal"` | | -| image.pullPolicyOverride | string | `"IfNotPresent"` | | -| importContent | bool | `true` | | -| validWebcomponentUrls | string | `".?"` | | - -## Requirements - -| Repository | Name | Version | -|------------|------|---------| -| file://../common | common | 0.1.5 | - -# portal - -![Version: 0.69.125](https://img.shields.io/badge/Version-0.69.125-informational?style=flat-square) ![AppVersion: 0.203.0](https://img.shields.io/badge/AppVersion-0.203.0-informational?style=flat-square) - -Helm Chart for the openmfp Portal - -## Requirements - -| Repository | Name | Version | -|------------|------|---------| -| file://../common | common | 0.1.5 | - -## Values - -| Key | Type | Default | Description | -|-----|------|---------|-------------| -| featureToggles | string | `"enableSessionAutoRefresh=true"` | | -| http.protocol | string | `"https"` | | -| image.name | string | `"ghcr.io/openmfp/portal"` | | -| image.pullPolicyOverride | string | `"IfNotPresent"` | | -| importContent | bool | `true` | | -| validWebcomponentUrls | string | `".?"` | | -