Skip to content

Commit

Permalink
Clarify comments in values file
Browse files Browse the repository at this point in the history
  • Loading branch information
pvannierop committed Oct 22, 2024
1 parent 5f465c9 commit afa1ef6
Show file tree
Hide file tree
Showing 30 changed files with 44 additions and 41 deletions.
4 changes: 3 additions & 1 deletion charts/app-config-frontend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# app-config-frontend
[![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/app-config-frontend)](https://artifacthub.io/packages/helm/radar-base/app-config-frontend)

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

A Helm chart for the frontend application of RADAR-base application config (app-config).

Expand Down Expand Up @@ -43,6 +43,8 @@ A Helm chart for the frontend application of RADAR-base application config (app-
| securityContext | object | `{}` | Configure Appconfig containers' Security Context |
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `8080` | Appconfig frontend port |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| advertised_protocol | string | `"https"` | The protocol in advertised URIs (https, http) |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer |
| ingress.path | string | `"/appconfig"` | Path within the url structure |
Expand Down
4 changes: 2 additions & 2 deletions charts/app-config-frontend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ service:
# -- Appconfig frontend port
port: 8080

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false
# - The protocol in advertised (return) URIs (https, http)
# -- The protocol in advertised URIs (https, http)
advertised_protocol: https

ingress:
Expand Down
2 changes: 1 addition & 1 deletion charts/app-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ A Helm chart for RADAR-base application config (app-config) backend service whic
| securityContext | object | `{}` | Configure Appconfig containers' Security Context |
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `8090` | Appconfig port |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer |
| ingress.path | string | `"/appconfig/api"` | Path within the url structure |
Expand Down
2 changes: 1 addition & 1 deletion charts/app-config/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ service:
# -- Appconfig port
port: 8090

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false

ingress:
Expand Down
2 changes: 1 addition & 1 deletion charts/cc-schema-registry-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ A Helm chart for Confluent Cloud schema registry proxy. This proxy service is us
| service.type | string | `"ExternalName"` | Kubernetes Service type, |
| service.externalName | string | `"schema-registry-domain"` | Domain name used for pointing to actual schema registry instance |
| service.port | int | `443` | Port number to connect to Confluent platform |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer |
| ingress.path | string | `"/schema/?(.*)"` | Path within the url structure |
Expand Down
2 changes: 1 addition & 1 deletion charts/cc-schema-registry-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ service:
# -- Port number to connect to Confluent platform
port: 443

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false

ingress:
Expand Down
2 changes: 1 addition & 1 deletion charts/data-dashboard-backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ API for data in the data dashboard
| securityContext | object | `{}` | Configure container's Security Context |
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `9000` | data-dashboard-backend port |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.ingressClassName | string | `"nginx"` | Ingress class name |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer |
Expand Down
2 changes: 1 addition & 1 deletion charts/data-dashboard-backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ service:
# -- data-dashboard-backend port
port: 9000

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false

ingress:
Expand Down
2 changes: 1 addition & 1 deletion charts/kafka-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ The following table lists the configurable parameters of the Kafka Manager chart
| image.tag | string | `nil` | Overrides the image tag whose default is the chart appVersion. |
| image.pullPolicy | string | `"IfNotPresent"` | |
| imagePullSecrets | list | `[]` | Docker registry secret names as an array |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer |
| ingress.path | string | `"/kafkamanager/"` | Path within the url structure |
Expand Down
2 changes: 1 addition & 1 deletion charts/kafka-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ image:
# -- Docker registry secret names as an array
imagePullSecrets: []

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false

ingress:
Expand Down
4 changes: 2 additions & 2 deletions charts/management-portal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ A Helm chart for RADAR-Base Management Portal to manage projects and participant
| securityContext | object | `{}` | Configure management-portal containers' Security Context |
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `8080` | Management Portal port |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| advertised_protocol | string | `"https"` | |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| advertised_protocol | string | `"https"` | The protocol in advertised URIs (https, http) |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer |
| ingress.path | string | `"/managementportal"` | Path within the url structure |
Expand Down
4 changes: 2 additions & 2 deletions charts/management-portal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ service:
# -- Management Portal port
port: 8080

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false
# - The protocol in advertised (return) URIs (https, http)
# -- The protocol in advertised URIs (https, http)
advertised_protocol: https

ingress:
Expand Down
4 changes: 2 additions & 2 deletions charts/radar-appserver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ A Helm chart for the backend application of RADAR-base Appserver
| securityContext | object | `{}` | Configure radar-appserver containers' Security Context |
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `8080` | radar-appserver port |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| advertised_protocol | string | `"https"` | |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| advertised_protocol | string | `"https"` | The protocol in advertised URIs (https, http) |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer and session configuration |
| ingress.path | string | `"/appserver/?(.*)"` | Path within the url structure |
Expand Down
4 changes: 2 additions & 2 deletions charts/radar-appserver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ service:
# -- radar-appserver port
port: 8080

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false
# - The protocol in advertised (return) URIs (https, http)
# -- The protocol in advertised URIs (https, http)
advertised_protocol: https

ingress:
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ A Helm chart for RADAR-base gateway. REST Gateway to Kafka, for incoming partici
| securityContext | object | `{}` | Configure radar-gateway containers' Security Context |
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `8080` | radar-gateway port |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer and deny access to sensitive URLs |
| ingress.path | string | `"/kafka/?(.*)"` | Path within the url structure |
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ service:
# -- radar-gateway port
port: 8080

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false

ingress:
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-home/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ RADAR-base home page.
| namespace | string | `"default"` | Kubernetes namespace that Appconfig is going to be deployed on |
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `8080` | Port |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer |
| ingress.path | string | `"/"` | Path within the url structure |
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-home/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ service:
# -- Port
port: 8080

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false

ingress:
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-integration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ A Helm chart for RADAR-Base REDCap survey integration application.
| securityContext | object | `{}` | Configure radar-integration containers' Security Context |
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `8080` | radar-integration port |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer and deny access to sensitive URLs |
| ingress.path | string | `"/redcapint/?(.*)"` | Path within the url structure |
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-integration/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ service:
# -- radar-integration port
port: 8080

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false

ingress:
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-push-endpoint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ A Helm chart for RADAR-base Push Endpoint. REST Gateway to Kafka, for incoming d
| securityContext | object | `{}` | Configure radar-push-endpoint containers' Security Context |
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `8090` | radar-push-endpoint port |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer and deny access to sensitive URLs |
| ingress.path | string | `"/push-endpoint"` | Path within the url structure |
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-push-endpoint/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ service:
# -- radar-push-endpoint port
port: 8090

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false

ingress:
Expand Down
5 changes: 3 additions & 2 deletions charts/radar-rest-sources-authorizer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# radar-rest-sources-authorizer
[![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/radar-rest-sources-authorizer)](https://artifacthub.io/packages/helm/radar-base/radar-rest-sources-authorizer)

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

A Helm chart for the front-end application of RADAR-base Rest Sources Authorizer which is a portal to authorize the Fitbit connector to read data from Fitbit accounts.

Expand Down Expand Up @@ -42,7 +42,8 @@ A Helm chart for the front-end application of RADAR-base Rest Sources Authorizer
| securityContext | object | `{}` | Configure radar-rest-sources-authorizer containers' Security Context |
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `8080` | radar-rest-sources-authorizer port |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| advertised_protocol | string | `"https"` | The protocol in advertised URIs (https, http) |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer |
| ingress.path | string | `"/rest-sources/authorizer"` | Path within the url structure |
Expand Down
4 changes: 2 additions & 2 deletions charts/radar-rest-sources-authorizer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ service:
# -- radar-rest-sources-authorizer port
port: 8080

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false
# - The protocol in advertised (return) URIs (https, http)
# -- The protocol in advertised URIs (https, http)
advertised_protocol: https

ingress:
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-rest-sources-backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ A Helm chart for the backend application of RADAR-base Rest Sources Authorizer
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `8080` | radar-rest-sources-backend port |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress) |
| advertised_protocol | string | `"https"` | |
| advertised_protocol | string | `"https"` | The protocol in advertised URIs (https, http) |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer and session configuration |
| ingress.path | string | `"/rest-sources/backend"` | Path within the url structure |
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-rest-sources-backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ service:

# -- Disable TLS (reconfigures Ingress)
disable_tls: false
# - The protocol in advertised (return) URIs (https, http)
# -- The protocol in advertised URIs (https, http)
advertised_protocol: https

ingress:
Expand Down
4 changes: 2 additions & 2 deletions charts/radar-upload-connect-backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ A Helm chart for RADAR-base upload connector backend application. This applicati
| securityContext | object | `{}` | Configure radar-upload-connect-backend containers' Security Context |
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `8085` | radar-upload-connect-backend port |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| advertised_protocol | string | `"https"` | |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| advertised_protocol | string | `"https"` | The protocol in advertised URIs (https, http) |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer and proxy settings |
| ingress.path | string | `"/upload/api/?(.*)"` | Path within the url structure |
Expand Down
4 changes: 2 additions & 2 deletions charts/radar-upload-connect-backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ service:
# -- radar-upload-connect-backend port
port: 8085

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false
# - The protocol in advertised (return) URIs (https, http)
# -- The protocol in advertised URIs (https, http)
advertised_protocol: https

ingress:
Expand Down
4 changes: 2 additions & 2 deletions charts/radar-upload-connect-frontend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ A Helm chart for RADAR-base upload connector frontend application that provides
| securityContext | object | `{}` | Configure radar-upload-connect-frontend containers' Security Context |
| service.type | string | `"ClusterIP"` | Kubernetes Service type |
| service.port | int | `80` | radar-upload-connect-frontend port |
| disable_tls | bool | `false` | Disable TLS (reconfigures Ingress and sets URLs to use HTTP) |
| advertised_protocol | string | `"https"` | |
| disable_tls | bool | `false` | Reconfigure Ingress to not force TLS |
| advertised_protocol | string | `"https"` | The protocol in advertised URIs (https, http) |
| ingress.enabled | bool | `true` | Enable ingress controller resource |
| ingress.annotations | object | check values.yaml | Annotations that define default ingress class, certificate issuer |
| ingress.path | string | `"/upload/?(.*)"` | Path within the url structure |
Expand Down
4 changes: 2 additions & 2 deletions charts/radar-upload-connect-frontend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ service:
# -- radar-upload-connect-frontend port
port: 80

# -- Disable TLS (reconfigures Ingress and sets URLs to use HTTP)
# -- Reconfigure Ingress to not force TLS
disable_tls: false
# - The protocol in advertised (return) URIs (https, http)
# -- The protocol in advertised URIs (https, http)
advertised_protocol: https

ingress:
Expand Down

0 comments on commit afa1ef6

Please sign in to comment.