add logging for deploy debugging

This commit is contained in:
sbriat 2023-03-13 16:54:28 +01:00
parent 7890126580
commit 5e2e2680b5
2 changed files with 5 additions and 2 deletions

View File

@ -41,6 +41,6 @@ build:
script: script:
- docker build --pull -t "$CI_REGISTRY_IMAGE" . - docker build --pull -t "$CI_REGISTRY_IMAGE" .
- docker push "$CI_REGISTRY_IMAGE" - docker push "$CI_REGISTRY_IMAGE"
only: # only:
- main # - main
when: manual when: manual

View File

@ -28,6 +28,7 @@ export class OpaDecisionMaker extends IMakeDecision {
(obj, item) => Object.assign(obj, { [item.name]: item.value }), (obj, item) => Object.assign(obj, { [item.name]: item.value }),
{}, {},
); );
console.log(reducedContext);
try { try {
const { data } = await lastValueFrom( const { data } = await lastValueFrom(
this._httpService.post<Decision>( this._httpService.post<Decision>(
@ -40,8 +41,10 @@ export class OpaDecisionMaker extends IMakeDecision {
}, },
), ),
); );
console.log('data:', data);
return new Authorization(data.result.allow); return new Authorization(data.result.allow);
} catch (e) { } catch (e) {
console.log('error', e);
return new Authorization(false); return new Authorization(false);
} }
} }