diff options
author | Dan Timoney <dtimoney@att.com> | 2017-10-12 16:01:06 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2017-10-12 16:08:50 -0400 |
commit | dd3f74074787dfd14e8aec0b48883b780dd8ccba (patch) | |
tree | c84ba953f28e9997d87f8fce055e831392f37014 /vnfapi/provider/src/main/yang/vnfapi-provider-impl.yang | |
parent | 93a3119b6922b16ad7b3f41e16427c99b5eac371 (diff) |
Fixed vnfapi install issue
Fixed issues with vnfapi install:
- Resolved issue installing vnftools by converting to blueprint
- Resolved issue not finding RPC implementation of vnfapi by fixing
dependency feature vnftools, and by converting vnfapi to blueprint.
The root cause in both cases was probably something wrong with the
provider configuration, but it was simpler (not to mention more
maintainable) to just convert from config to blueprint.
Change-Id: I7010a845687673c932457774f3103834d328ab84
Issue-ID: SDNC-119
Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'vnfapi/provider/src/main/yang/vnfapi-provider-impl.yang')
-rw-r--r-- | vnfapi/provider/src/main/yang/vnfapi-provider-impl.yang | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/vnfapi/provider/src/main/yang/vnfapi-provider-impl.yang b/vnfapi/provider/src/main/yang/vnfapi-provider-impl.yang deleted file mode 100644 index 183fa901..00000000 --- a/vnfapi/provider/src/main/yang/vnfapi-provider-impl.yang +++ /dev/null @@ -1,65 +0,0 @@ -module vnfapi-provider-impl { - - yang-version 1; - namespace "org:onap:sdnc:vnfapi:provider:impl"; - prefix "vnfapi-provider-impl"; - - import config { prefix config; revision-date 2013-04-05; } - import opendaylight-md-sal-binding { prefix mdsal; revision-date 2013-10-28; } - import opendaylight-sal-binding-broker-impl { - prefix binding-impl; - revision-date 2013-10-28; - } - - description - "This module contains the base YANG definitions for - vnfapi-provider impl implementation."; - - revision "2014-05-23" { - description - "Initial revision."; - } - - // This is the definition of the service implementation as a module identity. - identity vnfapi-provider-impl { - base config:module-type; - - // Specifies the prefix for generated java classes. - config:java-name-prefix vnfapiProvider; - } - - // Augments the 'configuration' choice node under modules/module. - // We consume the three main services, RPCs, DataStore, and Notifications - augment "/config:modules/config:module/config:configuration" { - case vnfapi-provider-impl { - when "/config:modules/config:module/config:type = 'vnfapi-provider-impl'"; - - container rpc-registry { - uses config:service-ref { - refine type { - mandatory true; - config:required-identity mdsal:binding-rpc-registry; - } - } - } - - container notification-publish-adapter { - uses config:service-ref { - refine type { - mandatory true; - config:required-identity binding-impl:binding-new-notification-publish-service; - } - } - } - - container data-broker { - uses config:service-ref { - refine type { - mandatory false; - config:required-identity mdsal:binding-async-data-broker; - } - } - } - } - } -} |