Skip to content

Fix Reindex API in OEP and preshipping env

Vibhuti Sharma [Microsoft] requested to merge users/Vibhuti/pathUpdate into master

Behavior: Reindex calls return 200 status code in OEP instances, but no reindexing takes place.

Root Cause: Reindex API calls the storage query records API. The url for this API is picked from env variables, and should be of this format - ${storage_service_url}/query/records, as mentioned in ReadMe .

The value is correct in the development.yaml file used in OSDU pipelines, but incorrect in helm-charts-azure values.yaml file, which is source of truth for OEP instances and preshipping environment both. This is the reason why reindexing does not happen, because calls to storage api fail with error {"code":405,"reason":"Method not found.","message":"Method not found."} due to incorrect url value being picked.

Changes The MR aims at correcting this value in values.yaml of indexer service in helm-charts-azure

Edited by Vibhuti Sharma [Microsoft]

Merge request reports