Skip to content

Commit

Permalink
KB-1493 - DEV | BE | API for Top 10 MDO data for the Hall of Fame
Browse files Browse the repository at this point in the history
1. Added the kong API entry for hall of fame.
  • Loading branch information
tarentomaheshvakkund committed Dec 13, 2023
1 parent f2558a7 commit 32967fe
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion ansible/roles/kong-api/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10706,4 +10706,22 @@ kong_apis:
config.hour: "{{ medium_rate_limit_per_hour }}"
config.limit_by: credential
- name: request-size-limiting
config.allowed_payload_size: "{{ small_request_size_limit }}"
config.allowed_payload_size: "{{ small_request_size_limit }}"

- name: halloffame
uris: "/halloffame/read"
upstream_url: "{{ sb_cb_ext_service_url }}/v1/halloffame/read"
strip_uri: true
plugins:
- name: jwt
- name: cors
- "{{ statsd_pulgin }}"
- name: acl
config.whitelist:
- 'dataAccess'
- name: rate-limiting
config.policy: local
config.hour: "{{ medium_rate_limit_per_hour }}"
config.limit_by: credential
- name: request-size-limiting
config.allowed_payload_size: "{{ medium_request_size_limit }}"

0 comments on commit 32967fe

Please sign in to comment.