aboutsummaryrefslogtreecommitdiffstats
path: root/sdv/docs
diff options
context:
space:
mode:
Diffstat (limited to 'sdv/docs')
-rw-r--r--sdv/docs/docker/sdvconfig/developer/devguide.rst309
-rw-r--r--sdv/docs/docker/sdvconfig/developer/extrapolation-flow.pngbin0 -> 48637 bytes
-rw-r--r--sdv/docs/docker/sdvconfig/developer/extrapolation.pngbin0 -> 6923 bytes
-rw-r--r--sdv/docs/docker/sdvconfig/developer/validation-flow.pngbin0 -> 73615 bytes
-rw-r--r--sdv/docs/docker/sdvconfig/developer/validation.pngbin0 -> 17281 bytes
-rw-r--r--sdv/docs/docker/sdvconfig/user/configguide.rst83
-rw-r--r--sdv/docs/docker/sdvconfig/user/userguide.rst42
7 files changed, 434 insertions, 0 deletions
diff --git a/sdv/docs/docker/sdvconfig/developer/devguide.rst b/sdv/docs/docker/sdvconfig/developer/devguide.rst
new file mode 100644
index 0000000..7c1fc15
--- /dev/null
+++ b/sdv/docs/docker/sdvconfig/developer/devguide.rst
@@ -0,0 +1,309 @@
+=========
+SDVConfig
+=========
+Welcome to the SDVConfig Developer Guide!
+
+Who should use this guide?
+
+If you want to extend SDVConfig by using a creating a module, adding functionality to an existing module, or expanding test coverage, this guide is for you. We’ve included detailed information for developers on how to test and document modules, as well as the prerequisites for getting your module be accepted into the main SDV repository.
+
+Table of Contents
+^^^^^^^^^^^^^^^^^
+- Description of the project
+- Software architecture of the project
+- Software technologies uses
+- Setting up your local environment
+- Flow of the project
+- Project Structure
+- Code walkthrough of core functionalities
+
+Description of the project
+^^^^^^^^^^^^^^^^^^^^^^^^^^
+Cloud software validation is an upcoming project consisting of many microservices which all together form a single software validation solution. This documentation will be focused on one of the microservice namely SDV: Pre-Deployment Software Validation.
+
+PDF(POD Descriptor File) is a standard, cloud-agnostic descriptor file meant to be used by Vendors/DC admins to describe the target Cloud Environment/Lab. One of the objectives of PDF is to provide interoperability between various Cloud-infrastructure and Vendors. My work at this internship aims to develop this PDF file further, add more details and develop some toolings around PDF to make it easier to consume by the end-user. The final process will involve validating PDF against installer manifests. The target installers being airship and TripleO.
+
+In summary, the goals of the project are:
+- Develop the PDF file further, add more details and develop some tooling around PDF to make it easier to consume by the end-user.
+- Validate the existing PDF with installers.
+
+Software architecture of the project
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+There were two modules in SDVConfig, one is the extrapolation, which is a tooling around the PDF and validation, which validates the existing pdf with installers.
+
+The software architecture of extrapolation module is as follows.
+.. image:: extrapolation.png
+
+The software architecture of validation module is as follows.
+.. image:: validation.png
+
+Software technologies used
+^^^^^^^^^^^^^^^^^^^^^^^^^^
+The software technologies used in the project are
+- Tornado module for creating rest-apis
+- json module for handling json data
+- yaml module for handling yaml data
+- requests module for pushing data to testapi
+
+Setting up your local environment
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Use Python Virtual Environment Manager.
+
+```
+python3 -m pip install --user virtualenv
+python3 -m venv env
+source env/bin/activate
+```
+
+Install the required packages from requirements.txt.
+
+```
+pip install -r requirements.txt
+```
+
+Flow of the project
+^^^^^^^^^^^^^^^^^^^
+The flow of the two modules is shown in this detailed picture as shown below.
+
+The flow diagram of the extrapolation module is as follows.
+
+.. image:: extrapolation-flow.png
+
+The flow diagram of the validation module is as follows.
+
+.. image:: validation-flow.png
+
+Project Structure
+^^^^^^^^^^^^^^^^^
+The project structure is as follows.
+
+.. code-block:: bash
+
+ sdvconfig
+ ├── cli_validation.py
+ ├── Dockerfile
+ ├── extrapolation
+ │ ├── extrapolation.py
+ │ └── __init__.py
+ ├── manifest
+ │ ├── __init__.py
+ │ └── manifest.py
+ ├── mapping
+ │ ├── airship
+ │ │ ├── hardware-mapping.json
+ │ │ ├── info-mapping.json
+ │ │ ├── network-mapping.json
+ │ │ ├── platform-mapping.json
+ │ │ ├── software-mapping.json
+ │ │ └── storage-mapping.json
+ │ ├── template
+ │ │ ├── hardware-mapping.json
+ │ │ ├── info-mapping.json
+ │ │ ├── network-mapping.json
+ │ │ ├── platform-mapping.json
+ │ │ ├── software-mapping.json
+ │ │ └── storage-mapping.json
+ │ └── TripleO
+ │ ├── hardware-mapping.json
+ │ ├── info-mapping.json
+ │ ├── network-mapping.json
+ │ ├── platform-mapping.json
+ │ ├── software-mapping.json
+ │ └── storage-mapping.json
+ ├── README.md
+ ├── requirements.txt
+ ├── server.py
+ ├── testapi
+ │ ├── __init__.py
+ │ └── testapi.py
+ └── validation
+ ├── hardware.py
+ ├── info.py
+ ├── __init__.py
+ ├── network.py
+ ├── platform.py
+ ├── software.py
+ └── storage.py
+
+
+Code walkthrough of core functionalities
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Extrapolation
+"""""""""""""
+The core code of extrapolation is as shown below.
+
+.. code:: python
+ def extrapolate(self):
+ """ Perform Extrapolation """
+
+ list_servers = []
+
+ # get ipmi info
+ count = 0
+
+ for val in self.pdf["roles"]:
+ num_servers = int(val["count"]) # Number of servers in the particular role.
+ role = val["name"]
+
+ for idx in range(num_servers):
+ temp = dict()
+ temp["role_name"] = role
+ temp["device_name"] = str(role) + str(idx + 1)
+ temp["az_name"] = "default"
+ temp["ha_name"] = "default"
+
+ temp["ilo_info"] = self.get_ilo_info(count)
+ count += 1
+
+ list_servers.append(temp)
+
+We iterate through list of roles and generate list of servers with the following code. The IP values are picked from networks/ipmi/cidr from the pdf and is used in the extrapolation process.
+
+Validation
+""""""""""
+The core code of validation is as shown below.
+
+.. code:: python
+ def validate(self):
+ """ description about validation """
+ # validate info
+ correct, wrong, total, result = InfoValidation(
+ self.json, self.manifest, self.logger).get_values()
+ self.correct += correct
+ self.wrong += wrong
+ self.total += total
+ string = (
+ "The number of correct :{} wrong:{} and total:{} in info profile\n\n".format(
+ self.correct,
+ self.wrong,
+ self.total))
+ self.result += result + string
+
+ # iterate through the roles: have a class for each for each of the roles
+ for _, value in enumerate(self.json["roles"]):
+ role = value["name"]
+ # print(role,value["hardware_profile"])
+ correct, wrong, total, result = HardwareValidation(
+ self.json, value["hardware_profile"], self.manifest, self.logger).get_values()
+ self.correct += correct
+ self.wrong += wrong
+ self.total += total
+ string = (
+ "The number of correct :{} wrong:{} and total:{} in hardware profile\n\n".format(
+ correct, wrong, total))
+ self.result += result + string
+
+ correct, wrong, total, result = StorageValidation(
+ role, self.json, value["storage_mapping"], self.manifest, self.logger).get_values()
+ self.correct += correct
+ self.wrong += wrong
+ self.total += total
+ string = (
+ "The number of correct :{} wrong:{} and total:{} in storage profile\n\n".format(
+ correct, wrong, total))
+ self.result += result + string
+
+ correct, wrong, total, result = SoftwareValidation(role, self.json, \
+ value["sw_set_name"], self.manifest, self.global_sw_dir, self.type_sw_dir, \
+ self.site_sw_dir, self.logger).get_values()
+ self.correct += correct
+ self.wrong += wrong
+ self.total += total
+ string = (
+ "The number of correct :{} wrong:{} and total:{} in software profile\n\n".format(
+ correct, wrong, total))
+ self.result += result + string
+
+ correct, wrong, total, result = PlatformValidation(
+ role, self.json, value["platform_profile"], self.manifest, self.logger).get_values()
+ self.correct += correct
+ self.wrong += wrong
+ self.total += total
+ string = (
+ "The number of correct :{} wrong:{} and total:{} in platform profile\n\n".format(
+ correct, wrong, total))
+ self.result += result + string
+
+ correct, wrong, total, result = NetworkValidation(role, self.json, \
+ value["interface_mapping"], self.manifest, self.logger).get_values()
+ self.correct += correct
+ self.wrong += wrong
+ self.total += total
+ string = (
+ "The number of correct :{} wrong:{} and total:{} in network profile\n\n".format(
+ correct, wrong, total))
+ self.result += result + string
+
+ self.testapi_result["timestamp"] = datetime.datetime.now()
+ self.testapi_result["correct"] = self.correct
+ self.testapi_result["wrong"] = self.wrong
+ self.testapi_result["total"] = self.total
+
+ # print the final report
+ self.logger.info("Validation complete!")
+ # push results to opnfv testapi
+ PushResults(self.testapi_result, self.logger)
+
+ return self.result
+
+and one sample validation file, say hardware validation code is as follow.
+
+.. code:: python
+ def validate_profile(self, value):
+ """ validate profile """
+ val = ""
+ profile = 'profile'
+ keys = [
+ 'bios_version',
+ 'bios_mode',
+ 'bootstrap_proto',
+ 'hyperthreading_enabled',
+ 'bios_setting']
+
+ for key in self.json[profile]:
+ if key["profile_name"] == value:
+ val = key
+ break
+
+ if val == "":
+ self.logger.error("Not able to find bios profile name: %s", value)
+ else:
+ for key in keys:
+ try:
+ temp1 = val[key]
+ temp2 = self.manifest.find_val(self.role, profile, key)
+ self.comparison(key, profile, temp1, temp2)
+ except KeyError:
+ self.logger.error("Not able to find key: %s in profile: %s", key, value)
+
+ self.logger.info("Completed with the validation of profile name:%s", value)
+
+and the core recursive code which is used to find keys in the manifest files is as follows.
+
+.. code::python
+ def find_vals(self, key, temp_json):
+ """ insert all matching json key-vals in array """
+ # self.logger.info("temp_json value:%s", temp_json)
+ for k, value in temp_json.items():
+ if k == key:
+ if isinstance(value, list):
+ for val in value:
+ self.vals.append(str(val))
+ else:
+ self.vals.append(str(value))
+
+ if isinstance(value, dict):
+ found = self.find_vals(key, value)
+ if found:
+ return True
+
+ if isinstance(value, list):
+ for _, val in enumerate(value):
+ if isinstance(val, str):
+ continue
+ found = self.find_vals(key, val)
+ if found:
+ return True
+ return False
+
+The code first iterates through all the profiles, and for each profile it checks with each key, gets its corresponding mapped value from the mapping files and checks whether the key exists in the installer manifest or not. \ No newline at end of file
diff --git a/sdv/docs/docker/sdvconfig/developer/extrapolation-flow.png b/sdv/docs/docker/sdvconfig/developer/extrapolation-flow.png
new file mode 100644
index 0000000..5b220af
--- /dev/null
+++ b/sdv/docs/docker/sdvconfig/developer/extrapolation-flow.png
Binary files differ
diff --git a/sdv/docs/docker/sdvconfig/developer/extrapolation.png b/sdv/docs/docker/sdvconfig/developer/extrapolation.png
new file mode 100644
index 0000000..1a0f777
--- /dev/null
+++ b/sdv/docs/docker/sdvconfig/developer/extrapolation.png
Binary files differ
diff --git a/sdv/docs/docker/sdvconfig/developer/validation-flow.png b/sdv/docs/docker/sdvconfig/developer/validation-flow.png
new file mode 100644
index 0000000..de4853e
--- /dev/null
+++ b/sdv/docs/docker/sdvconfig/developer/validation-flow.png
Binary files differ
diff --git a/sdv/docs/docker/sdvconfig/developer/validation.png b/sdv/docs/docker/sdvconfig/developer/validation.png
new file mode 100644
index 0000000..f6d2dc3
--- /dev/null
+++ b/sdv/docs/docker/sdvconfig/developer/validation.png
Binary files differ
diff --git a/sdv/docs/docker/sdvconfig/user/configguide.rst b/sdv/docs/docker/sdvconfig/user/configguide.rst
new file mode 100644
index 0000000..d8bb3c2
--- /dev/null
+++ b/sdv/docs/docker/sdvconfig/user/configguide.rst
@@ -0,0 +1,83 @@
+=========
+SDVConfig
+=========
+Welcome to the SDVConfig config Guide!
+
+Who should use this guide?
+
+If you are searching for a way to run the sdvconfig code and don't know how, this guide is for you.
+
+There currently exists two ways of running the code, they are through commandline and through docker-http.
+
+Commandline
+^^^^^^^^^^^
+The configuration required are as follows.
+
+Use Python Virtual Environment Manager
+```
+python3 -m pip install --user virtualenv
+python3 -m venv env
+source env/bin/activate
+```
+Install the required packages from requirements.txt
+
+```
+pip install -r requirements.txt
+```
+Please refer the user guide on how to run the code on commandline.
+
+docker-http
+^^^^^^^^^^^
+Make sure you have docker installed before proceeding any further.
+
+The Dockerfile contents are as follows.
+
+.. code:: bash
+ FROM python:3.8-slim-buster
+
+ # create folder sdvconfig
+ RUN mkdir sdvconfig
+ # change the workdir to the newly created file
+ WORKDIR /sdvconfig/
+
+ # install from requirements.txt
+ COPY requirements.txt /sdvconfig/requirements.txt
+ RUN pip install -r requirements.txt
+ RUN rm requirements.txt
+
+ # copy all required files/folders
+ COPY extrapolation/ /sdvconfig/extrapolation/
+ COPY mapping/ /sdvconfig/mapping/
+ COPY validation/ /sdvconfig/validation/
+ COPY server.py /sdvconfig/
+ COPY cli_validation.py /sdvconfig/
+ COPY testapi/ sdvconfig/testapi/
+ COPY manifest /sdvconfig/manifest/
+
+ # expose port for rest calls
+ EXPOSE 8000
+
+ # run the http server
+ CMD [ "python", "server.py" ]
+
+Build the docker image with the following command.
+
+```
+docker build --tag <user>/sdvconfig:<version>
+```
+You’ll see Docker step through each instruction in your Dockerfile, building up your image as it goes. If successful, the build process should end with a message Successfully tagged <user>/sdvconfig:<version>.
+
+Finally we can run the image as a container with the follwing command.
+
+```
+docker run -v /path/to/folder:/path/to/folder --publish 8000:8000 --detach --name config <user>/sdvconfig:<version>
+```
+
+There are a couple of common flags here:
+- --publish asks Docker to forward traffic incoming on the host’s port 8000 to the container’s port 8080. Containers have their own private set of ports, so if you want to reach one from the network, you have to forward traffic to it in this way. Otherwise, firewall rules will prevent all network traffic from reaching your container, as a default security posture.
+- --detach asks Docker to run this container in the background.
+- --name specifies a name with which you can refer to your container in subsequent commands, in this case config.
+Finally we attach a volume from the localhost to the container so we can feed in files such as pdf, manifests to docker-http module and get the results persisted in this volume . This is done with ``` -v ```.
+
+Please refer the user guide regarding the http requests.
+
diff --git a/sdv/docs/docker/sdvconfig/user/userguide.rst b/sdv/docs/docker/sdvconfig/user/userguide.rst
new file mode 100644
index 0000000..f38303d
--- /dev/null
+++ b/sdv/docs/docker/sdvconfig/user/userguide.rst
@@ -0,0 +1,42 @@
+=========
+SDVConfig
+=========
+Welcome to the SDVConfig user Guide!
+
+Who should use this guide?
+
+If you are searching for a way to run the sdvconfig code and don't know how, this guide is for you.
+
+Currently there exists two functionalities, extrapolation and validation.
+
+To do a extrapolate POST request, use following command.
+
+```
+curl --header "Content-Type: application/json" --request POST --data '{"pdf_fn":"<>", "store_at":"<>"}' http://localhost:8000/extrapolate
+```
+
+To run this on commandline, use the following command
+
+```
+python extrapolation.py --pdf_fn="path/to/pdf_fn" --store-at="path/to/storage"
+```
+
+The pdf_fn key expects absolute filepath to pdf or a raw github file url.
+the store_at key expects absolute filepath to which the new generated pdf should be stored at.
+
+To do a validation POST request, use following command
+
+```
+curl --header "Content-Type: application/json" --request POST --data '{"pdf_file":"<>", "inst_dir":"<>", "inst_type":"<>", "sitename":"<>"}' http://localhost:8000/validate
+```
+
+To run this on commandline, use the following command.
+
+```
+python cli_validation.py --inst_dir=path/to/mani_dir --inst_type=type --pdf=path/to/pdf --sitename=sitename
+```
+
+The pdf_file key expects absolute filepath to pdf or a raw github file url.
+The inst_dir key expects absolute filepath to installer directory or a github clone url.
+The inst_type key expects installer type string ("airship", "tripleo", etc.)
+sitename: intel-pod10, intel-pod15 etc.