Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.8.11 dev #216

Merged
merged 5 commits into from
Mar 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions ansible/roles/kong-api/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ surveySubmissions_service_prefix: /surveySubmissions
user_extension_prefix: /user-extension
cloud_service_prefix: /cloud-services
entities_service_prefix: /entities
solutions_service_prefix: /solutions
solutions_mlservice_prefix: /solutions
users_service_prefix: /users
integration_app_prefix: /app
userProjects_service_prefix: /userProjects
Expand Down Expand Up @@ -10983,8 +10983,12 @@ kong_apis:
upstream_url: "{{ sb_cb_ext_service_url }}/digilocker/v1/retrieveURI"
strip_uri: true
plugins:
- name: jwt
- name: cors
- "{{ statsd_pulgin }}"
- name: acl
config.whitelist:
- 'digiLockerAccess'
- name: rate-limiting
config.policy: local
config.hour: "{{ medium_rate_limit_per_hour }}"
Expand All @@ -10997,8 +11001,12 @@ kong_apis:
upstream_url: "{{ sb_cb_ext_service_url }}/digilocker/v1/retrieveDoc"
strip_uri: true
plugins:
- name: jwt
- name: cors
- "{{ statsd_pulgin }}"
- name: acl
config.whitelist:
- 'digiLockerAccess'
- name: rate-limiting
config.policy: local
config.hour: "{{ medium_rate_limit_per_hour }}"
Expand Down Expand Up @@ -11169,7 +11177,7 @@ kong_apis:
config.allowed_payload_size: "{{ small_request_size_limit }}"

- name: solutionsVerifyLink
uris: "{{ solutions_service_prefix }}/mlsurvey/v1/verifyLink"
uris: "{{ solutions_mlservice_prefix }}/mlsurvey/v1/verifyLink"
upstream_url: "{{ ml_survey_service_url }}/v1/solutions/verifyLink"
strip_uri: true
plugins:
Expand Down Expand Up @@ -11241,7 +11249,7 @@ kong_apis:
config.allowed_payload_size: "{{ small_request_size_limit }}"

- name: getTargetedSolutions
uris: "{{ solutions_service_prefix }}/mlcore/v1/targetedSolutions"
uris: "{{ solutions_mlservice_prefix }}/mlcore/v1/targetedSolutions"
upstream_url: "{{ ml_core_service_url }}/v1/solutions/targetedSolutions"
strip_uri: true
plugins:
Expand Down Expand Up @@ -11385,7 +11393,7 @@ kong_apis:
config.allowed_payload_size: "{{ small_request_size_limit }}"

- name: VerifyLink
uris: "{{ solutions_service_prefix }}/mlcore/v1/verifyLink"
uris: "{{ solutions_mlservice_prefix }}/mlcore/v1/verifyLink"
upstream_url: "{{ ml_core_service_url }}/v1/solutions/verifyLink"
strip_uri: true
plugins:
Expand All @@ -11403,7 +11411,7 @@ kong_apis:
config.allowed_payload_size: "{{ small_request_size_limit }}"

- name: GetTemplateOrQuestions
uris: "{{ solutions_service_prefix }}/mlcore/v1/details"
uris: "{{ solutions_mlservice_prefix }}/mlcore/v1/details"
upstream_url: "{{ ml_core_service_url }}/v1/solutions/details"
strip_uri: true
plugins:
Expand Down
Loading