Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
$ cd a1-adapter
$ mvn clean install -Dmaven.test.skip=true
$ docker images

After you build the A1 adapter artifacts, download below CCSDK/SDNC repos and build them in the following order.

...

ComponentRelease image and version tagStaging images and version tagManual snapshot (only available if manually built)
and version tag
A1 Policy Management Service

nexus3.?????:10???/??????:0.0.0.0?

nexus3.?????:10???/??????:0.0.0.0?

.onap.org:10002/onap/ccsdk-oran-a1policymanagementservice:1.2.2

nexus3.onap.org:10004/onap/ccsdk-oran-a1policymanagementservice:1.2.2

onap/ccsdk-oran-a1policymanagementservice:1.2.2-SNAPSHOT

SDNC image

onap/sdnc-image:2.2.1-SNAPSHOT??????:0.0.0.0_Snapshot-latest....?

Run A1-enabled Controller

...

Code Block
titleapplication-nonrtricgateway.yaml
linenumberstrue
collapsetrue
server:
  port: 9090
spring:
  cloud:
    gateway:
      httpclient:
        ssl:
          useInsecureTrustManager: true
        wiretap: true
      httpserver:
        wiretap: true
      routes:
      - id: A1-Policy
        uri: http://policy-agent-container:8081
        predicates:
        - Path=/a1-policy/**
management:
  endpoint:
    gateway:
      enabled: true
  endpoints:
    web:
      exposure:
        include: "gateway,loggers,logfile,health,info,metrics,threaddump,heapdump"
logging:
  level:
    ROOT: ERROR
    org.springframework: ERROR
    org.springframework.cloud.gateway: INFO
    reactor.netty: INFO
  file:
    name: /var/log/nonrtric-gateway/application.log

...

Code Block
languagebash
$ docker run -p 8080:8080 --network=nonrtric-docker-net nexus3.o-ran-sc.org:10002/o-ran-sc/nonrtric-controlpanel:2.32.0

Open NONRTRIC / A1 Policy Control Panel UI

...