Sed Problem in Integration
Description
In the installation of PDLC the following error apears:
sed: -e expression #1, char 12: unknown option to `s'
The above, makes MDM URI being false since the command for its sedding has a typo.
Possible Solution
Changing the line in the integration pipeline. From:
sed -i 's/"http://mdm-controller-service.he-codeco-mdm.svc.cluster.local:5080"/"http://mdm-api.he-codeco-mdm.svc.cluster.local:8090"/' data_preprocessing/pdlc-dp-deployment.yaml
To:
sed -i 's|"http://mdm-controller-service.he-codeco-mdm.svc.cluster.local:5080"|"http://mdm-api.he-codeco-mdm.svc.cluster.local:8090"|' data_preprocessing/pdlc-dp-deployment.yaml
Edited by Panagiotis Karamolegkos