Skip to content

Commit

Permalink
Merge pull request #199 from RADAR-base/fix-push-endpoint
Browse files Browse the repository at this point in the history
[radar-push-endpoint] Fix user repository token URL
  • Loading branch information
yatharthranjan authored Jun 6, 2024
2 parents 858d52c + 5762396 commit 4e49574
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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.2.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.2.3
version: 0.2.4
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
4 changes: 2 additions & 2 deletions 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.2.3](https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.2](https://img.shields.io/badge/AppVersion-0.2.2-informational?style=flat-square)
![Version: 0.2.4](https://img.shields.io/badge/Version-0.2.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.2](https://img.shields.io/badge/AppVersion-0.2.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 @@ -87,5 +87,5 @@ A Helm chart for RADAR-base Push Endpoint. REST Gateway to Kafka, for incoming d
| garmin.userRepositoryUrl | string | `"http://radar-rest-sources-backend:8080/rest-sources/backend"` | The base url of the user repository if the repository is http(s) based. |
| 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/"` | |
| 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. |
| 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. |
4 changes: 2 additions & 2 deletions charts/radar-push-endpoint/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,8 @@ garmin:
userRepositoryClientId: "radar_push_endpoint"
# -- The client secret to access the user repository if the repository requires authorization
userRepositoryClientSecret: "secret"
## -- The token URL for authentication (Usually the management portal token url)
userRepositoryTokenUrl: "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.
userRepositoryTokenUrl: "http://management-portal:8080/managementportal/oauth/token"

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 4e49574

Please sign in to comment.