Skip to content

Commit

Permalink
Update radar-push-endpoint chart to allow backfill configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mpgxvii committed Oct 29, 2024
1 parent c996c2b commit 509e992
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/radar-push-endpoint/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "0.3.2"
description: A Helm chart for RADAR-base Push Endpoint. REST Gateway to Kafka, for incoming data from Push or Subscription based WEB APIs. It performs authentication, authorization and content validation. For more details of the configurations, see https://github.com/RADAR-base/RADAR-PushEndpoint.
name: radar-push-endpoint
version: 0.3.5
version: 0.3.6
icon: "http://radar-base.org/wp-content/uploads/2022/09/Logo_RADAR-Base-RGB.png"
sources:
- https://github.com/RADAR-base/radar-helm-charts/tree/main/charts/radar-push-endpoint
Expand Down
3 changes: 2 additions & 1 deletion charts/radar-push-endpoint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# radar-push-endpoint
[![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/radar-push-endpoint)](https://artifacthub.io/packages/helm/radar-base/radar-push-endpoint)

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

A Helm chart for RADAR-base Push Endpoint. REST Gateway to Kafka, for incoming data from Push or Subscription based WEB APIs. It performs authentication, authorization and content validation. For more details of the configurations, see https://github.com/RADAR-base/RADAR-PushEndpoint.

Expand Down Expand Up @@ -90,4 +90,5 @@ A Helm chart for RADAR-base Push Endpoint. REST Gateway to Kafka, for incoming d
| garmin.userRepositoryClientId | string | `"radar_push_endpoint"` | The client ID to access the user repository if the repository requires authorization |
| garmin.userRepositoryClientSecret | string | `"secret"` | The client secret to access the user repository if the repository requires authorization |
| garmin.userRepositoryTokenUrl | string | `"http://management-portal:8080/managementportal/oauth/token"` | The token URL for authentication (Usually the management portal token url). Make sure to avoid trailing slash (/) in the url. |
| garmin.backfill | object | `{"enabled":true}` | Whether to enable Garmin backfill requests |
| redis.url | string | `"redis://localhost:6379"` | The redis server URL. Redis is used to keep track of garmin backfill progress and any other key value properties. |
2 changes: 1 addition & 1 deletion charts/radar-push-endpoint/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ data:
userRepositoryClientSecret: {{ .Values.garmin.userRepositoryClientSecret }}
userRepositoryTokenUrl: {{ .Values.garmin.userRepositoryTokenUrl }}
backfill:
enabled: true
enabled: {{ .Values.garmin.backfill.enabled }}
# Redis configuration
redis:
# Redis URI
Expand Down
3 changes: 3 additions & 0 deletions charts/radar-push-endpoint/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,9 @@ garmin:
userRepositoryClientSecret: "secret"
# -- The token URL for authentication (Usually the management portal token url). Make sure to avoid trailing slash (/) in the url.
userRepositoryTokenUrl: "http://management-portal:8080/managementportal/oauth/token"
# -- Whether to enable Garmin backfill requests
backfill:
enabled: true

redis:
# -- The redis server URL. Redis is used to keep track of garmin backfill progress and any other key value properties.
Expand Down

0 comments on commit 509e992

Please sign in to comment.