diff options
author | ToineSiebelink <toine.siebelink@est.tech> | 2024-07-04 15:15:36 +0100 |
---|---|---|
committer | ToineSiebelink <toine.siebelink@est.tech> | 2024-07-08 17:07:48 +0100 |
commit | d7914bc1f3c9505539304bd23b795c7b061dc6db (patch) | |
tree | 3bfb912918a7bdbc2b19e022d27312d08592d78e /docker-compose | |
parent | 82053f446aa1eb35e2a05e2557431497b15b031b (diff) |
Create PolicyExecutor Stub
- Generate interface from OpenApi in RTD docs
- Fixed Content Type in OpenAPI
- Fixed Paths in OpenAPI
- Made Authorization header compulsory in OpenAPI
- All 'enum' values in OpenAPI lowercase (in linr with CPS/NCMP conventions)
- Added impl with some basic functionality
- Added testware
- Pom includes docker image creation
- Docker compose updated to deploy stub
Issue-ID: CPS-2301
Change-Id: I462ad5c70474b2813fc04005c0d20a1b15b574ec
Signed-off-by: ToineSiebelink <toine.siebelink@est.tech>
Signed-off-by: sourabh_sourabh <sourabh.sourabh@est.tech>
Diffstat (limited to 'docker-compose')
-rw-r--r-- | docker-compose/docker-compose.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index 5620c4c17e..81d4d15683 100644 --- a/docker-compose/docker-compose.yml +++ b/docker-compose/docker-compose.yml @@ -136,6 +136,15 @@ services: - dmi-stub - dmi-service + policy-executor-stub: + container_name: policy-executor-stub + image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/policy-executor-stub:latest + ports: + - 8785:8080 + restart: unless-stopped + profiles: + - policy-executor-stub + prometheus: container_name: prometheus-container image: prom/prometheus:latest |