Initial OpenECOMP APPC commit
[appc.git] / README.md
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..4b35b52
--- /dev/null
+++ b/README.md
@@ -0,0 +1,164 @@
+# OpenECOMP APP-C
+
+---
+---
+
+# Introduction
+
+The Application Controller (APP-C) is one of the components in the OpenECOMP Platform. Its main function is to perform functions to control the lifecycle of Virtual Functions (VNFs) as well as the components that make up these functions. Therefore, this allows the cloud to be abstracted from Virtual Functions in order to enable repeatable actions, as well as enabling automation and a dynamic configuration approach.
+
+OpenECOMP APP-C is delivered with **3 Docker Containers**, which are deployed using Docker Images already containing the APP-C Framework Suite.
+NOTE: All three containers are hosted on Ubuntu 14.04 LTS OS.
+
+# Deployment Mode for APP-C
+The docker containers described above are set up to be deployed on the same Virtual Machine. **Docker Compose** is Docker's deployment tool that allows to configure and deploy multiple containers at once.
+
+# Compiling and Building APP-C
+
+APP-C (structured as a Maven project) uses the Maven tool to help compile, build, and deploy APP-C Artifacts (usually made up of Java packages) into a Maven Repository. In order to compile and build APP-C, a `mvn clean install` is executed, which checks for any errors and Java exceptions during compilation process.
+
+# Deploying APP-C
+In order to deploy APP-C, a Docker-ready machine needs to be available in order to deploy the APP-C Docker Containers. The following will help explain the requirements in order to run Docker to deploy these containers.
+
+### APP-C Docker Containers
+OpenECOMP APP-C docker images are currently stored on the Rackspace Nexus Docker Registry (Maven Repository). The deployment code can be found in the appc-docker-project Maven Project that builds and deploys the Docker Images to be deployed in the Nexus Repository (current approach is by using Jenkins). These Docker Images are composed of the APP-C Artifacts (org.openecomp.appc.*) compiled and packages in the app-controller git repository ([app-controller](https://23.253.149.175/appc/app-controller/tree/master)).
+
+The following Docker images are the actual deployment images used for running APP-C:
+- **APP-C Container (Version 1.0.0)**: This Docker container carries the APP-C Core Framework (OpenDaylight, Karaf, OSGI Bundles, ODL Functions/APIs, and APP-C specific features). This image is built on top of the SDN-C Docker Image, which contains core features (such as dblib as the Database Connector, SLI - the Service Logic Interpreter, and the Active & Available Inventory (A&AI) Listener). Some of these inherited SDN-C features/artifacts are necessary dependencies to build and compile APP-C features/artifacts.
+- **MySQL DB Container (Version 5.6)**: This is the database for APP-C. It is currently using MySQL Community Version (Open-Source version).
+- **Node Red / DGBuilder (Version 1.0.0)**:  This container has the visual tool used to assemble DGs in order to put together flows or services used to serve Virtual Functions. NOTE: This container is deployed using a Docker Image that is managed and supported by the SDN-C component.
+
+# Starting APP-C
+
+Ther following steps are needed to deploy and start OpenECOMP APP-C:
+
+##### Using Jenkins Jobs to set up APP-C Package
+- A Jenkins instance for OpenECOMP is available at [Jenkins - APP-C](http://23.253.148.60:8080/view/APPC/) in which current Jenkins Jobs for both the APP-C core code and deployment code are maintained.
+
+- [**appc-test-master (Jenkins Job for app-controller git project)**](http://23.253.148.60:8080/view/APPC/job/appc-test-master/): The Jenkins Job for the APP-C git repository (Core Component) is in charge of compiling and uploading/deploying successfully compiled maven APP-C artifacts into a [Nexus/Maven Repository](https://162.242.254.138:8443/#browse/welcome).
+
+- [**appc-docker-project (Jenkins Job for appc-docker-project git repo)**](https://23.253.149.175/appc/appc-docker-project): The Jenkins Job is used to run the code contained in git repository appc-docker-image which ultimately builds and deploy the APP-C Docker Image. Once the Jenkins job runs successfully, the newly compiled images are uploaded to the Nexus Repository. The APP-C Docker image contains all the SDN-C and APP-C artifacts needed to deploy a successful APP-C Component.
+    - With this job, all required and newly compiled and uploaded (to Nexus Repository) APP-C features from appc-test-master Jenkins job are pulled into the images and installed in an automated fashion.
+
+- As explained in the "APP-C Docker Containers" section, the configuration and set up of the other two docker containers are not maintained by APP-C. MySQL Docker Image is maintained by the Open Source MySQL Community and the Node Red / DGBuilder Docker Image is maintained by SDN-C.
+
+##### Using Docker to start APP-C Package
+
+- The VM where APP-C will be started needs to have Docker Engine and Docker-Compose installed (instructions on how to set Docker Engine can be found [here](https://docs.docker.com/engine/installation/)). The stable version of Docker Engine where APP-C has been tested to work is v1.12. An important requirement in order to access the Docker Image Repository on Nexus Repository (where docker images are currently stored) need to include the Nexus repository certificate imported in the host VM. This is needed for Docker to be able to access the Docker Images required (NOTE: MySQL Docker Image is obtained from the public Docker Hub).
+
+- In order to deploy containers, the following steps need to be taken in your host VM (Assuming instructions on how to set up Docker Engine have already been done):
+
+```bash
+# Install Docker-Compose
+apt-get install python-pip
+pip install docker-compose
+
+# Login to Nexus Repo to pull Docker Images (this assumes that Nexus Certificate is already imported in the Host VM on /usr/local/share/ca-certificates/ path):
+docker login ecomp-nexus:51212 # prompts for user credentials as a way to authenticate
+
+# Pull latest version of Docker Images (separately)
+docker pull ecomp-nexus:51212/ecomp/appc-image:latest
+docker pull mysql/mysql-server:5.6
+docker pull ecomp-nexus:51212/ecomp/dgbuilder-sdnc-image:latest
+
+# Pull latest version of Docker Images (using docker-compose template):
+docker-compose pull
+
+# Deploy Containers
+docker-compose up  # add -d argument to start process as a daemon (background process)
+```
+
+##### Using Docker to stop APP-C Package
+
+- The following steps are required to stop the APP-C package:
+
+```bash
+# Stop and Destroy Docker Containers (with docker-compose)
+docker-compose down
+
+# Stop Docker Containers (without docker-compose)
+docker stop <APPC_DOCKER_CONTAINER>
+docker stop <MYSQL_DOCKER_CONTAINER>
+docker stop <DGBUILDER_DOCKER_CONTAINER>
+
+# Destroy Docker Containers (without docker-compose)
+docker rm <APPC_DOCKER_CONTAINER>
+docker rm <MYSQL_DOCKER_CONTAINER>
+docker rm <DGBUILDER_DOCKER_CONTAINER>
+```
+
+- NOTE: To get a feel of how the deployment is actually performed, it is best to review the Docker Strategy of APP-C and look at the actual Jenkins Job (links provided above for Jenkins Jobs).
+
+#### Other Useful Docker Commands
+
+- The commands below are useful to test or troubleshoot in case a change in the gitlab code breaks a clean APP-C deployment:
+
+```bash
+# Check current docker-compose logs generated during 'docker-compose up' process:
+docker-compose logs # add -f to display logs in real time
+
+# Check out docker container's current details
+docker inspect <DOCKER_CONTAINER>
+
+# Verbose output during docker-compose commands
+docker-compose --verbose <DOCKER_COMPOSE_CMD_ARG>
+```
+
+## OpenECOMP Heat Template
+
+A Heat template that can be used on RackSpace to spin up the APP-C Host VM as well as the other OpenECOMP Components is available in gitlab. This template would orchestrate the deployment of all OpenECOMP components, which will trigger docker instantiation techniques to start up the containers (either standard docker or docker-compose - depending on how the component's containers get spun up).
+
+# Validating APP-C Installation
+
+First of all, APP-C Features come in the form of Karaf Features (an ODL-OpenDaylight package) which can be composed of one or more OSGI bundles. These features get installed in the ODL framework in order to be used and installed in the APP-C Docker Container (NOTE: SDN-C Core Features also get installed since APP-C docker image uses the SDN-C Core docker image as a base image). 
+
+### Accessing docker containers
+
+The following command is used to log in / access the docker containers:
+
+```bash
+docker exec -it <DOCKER_CONTAINER> bash
+```
+
+### Checking if APP-C Features are installed successfully
+
+The following commands are used to check if the APP-C (and SDN-C) Bundles and Features have been installed correctly in ODL (make sure to enter the APP-C Docker Container shell session):
+
+```bash
+# All commands are done inside the appc docker container
+
+# Enter the ODL Karaf Console
+cd /opt/opendaylight/current/bin
+./client -u karaf
+
+# Check if features have been installed or not (the ones with an 'X' in the "Installed" column have been successfully installed)
+feature:list | grep appc # filter app-c features only
+feature:list | grep sdnc # filter sdn-c features only
+
+# Check if bundles have been loaded successfully (the ones with 'Active' in the "State" column have been successfully loaded)
+bundle:list | grep appc # filter app-c bundles only
+bundle:list | grep sdnc # grep sdn-c bundles only
+
+# Check reason why bundle failed to load
+bundle:diag | grep <BUNDLE_NAME>
+```
+
+### Accessing the API Explorer
+The API Explorer is a GUI provided by OpenDaylight Open Source Framework. This GUI is very useful to send API calls from APIs that are either developed by APP-C or SDN-C frameworks. In order to make these REST calls, some APIs use the [RESTCONF](http://sdntutorials.com/what-is-restconf/) protocol to make such calls.
+
+Currently, the APIs that have a Directed Graph (DG) mapped to it are the ones that can be tested which are the SDN-C APIs and APP-C "appc-provider" APIs (LCM APIs will be available to test in later releases).
+
+In order to access this GUI, you need to go to the following website which will prompt for ODL user credentials in order to authenticate (more details on generic API Explorer [here](https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Restconf_API_Explorer)):
+
+- http://localhost:8282/apidoc/explorer/index.html (change localhost to your VM's public IP).
+
+# APP-C Configuration Model
+
+APP-C Configuration model involves using "default.properties" files for APP-C Feature that have default (or null) property values inside the core APP-C code. These default (or null) properties can be overwritten in the properties file called "[appc.properties](https://23.253.149.175/appc/appc-docker-project/blob/master/installation/src/main/appc-properties/appc.properties)" located in the APP-C deployment code.
+
+Each APP-C component depends on the property values that are defined for them in order to function properly. For example, the APP-C Feature "[appc-rest-adapter](https://23.253.149.175/appc/app-controller/tree/master/app-c/appc/appc-event-listener)" is used to listen to events that are being sent and received in the form of DMaaP Messages through a DMaaP Server Instance (a RESTful API Layer over the Apache Kafka). The properties for this feature need to be defined to point to the right DMaaP set of events to make sure that we are sending and receiving the proper messages on DMaaP.
+
+Currently, there are two ways to change properties for APP-C Features:
+- In appc.properties, change values and commit changes in [gitlab project](https://23.253.149.175/appc/appc-docker-project/blob/master/installation/src/main/appc-properties/appc.properties). Then, run appc-docker-project Jenkins job (make sure it points to the branch where you just commited the properties change) to make sure that APP-C Docker Image contains latest changes of appc.properties from the beginning (of course, Host VM needs to update images with "docker-compose pull" to pick up latest changes).
+- In the APP-C Docker Container, find the appc.properties file in /opt/openecomp/appc/properties/appc.properties and make changes. Then, restart the APP-C Docker Container by running "docker stop <APPC_DOCKER_CONTAINER>" then "docker start <APPC_DOCKER_CONTAINER>")  (NOTE: This approach is a temporary change in the appc.properties if the docker container is destroyed instead of stopped).
+