1 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
3 .. _clamp-acm-participants-smoke-tests:
5 CLAMP participants (kubernetes, http) Smoke Tests
6 -------------------------------------------------
9 The CLAMP participants (kubernetes and http) are used to interact with the helm client in a kubernetes environment for the
10 deployment of microservices via helm chart as well as to configure the microservices over REST endpoints. Both of these participants are
11 often used together in the Automation Composition Management workflow.
13 This document will serve as a guide to do smoke tests on the different components that are involved when working with the participants and outline how they operate. It will also show a developer how to set up their environment for carrying out smoke tests on these participants.
17 This article assumes that:
19 * You are using the operating systems such as linux/macOS/windows.
20 * You are using a directory called *git* off your home directory *(~/git)* for your git repositories
21 * Your local maven repository is in the location *~/.m2/repository*
22 * You have copied the settings.xml from oparent to *~/.m2/* directory
23 * You have added settings to access the ONAP Nexus to your M2 configuration, see `Maven Settings Example <https://wiki.onap.org/display/DW/Setting+Up+Your+Development+Environment>`_ (bottom of the linked page)
24 * Your local helm is in the location /usr/local/bin/helm
25 * Your local kubectl is in the location /usr/local/bin/kubectl
27 The procedure documented in this article has been verified using Ubuntu 20.04 LTS VM.
37 - Refer to this guide for basic environment setup `Setting up dev environment <https://wiki.onap.org/display/DW/Setting+Up+Your+Development+Environment>`_
39 2.2 Cloning CLAMP automation composition
40 ========================================
42 Run a script such as the script below to clone the required modules from the `ONAP git repository <https://gerrit.onap.org/r/admin/repos/q/filter:policy>`_. This script clones CLAMP automation composition and all dependency.
47 git clone https://gerrit.onap.org/r/policy/clamp clamp
50 Execution of the command above results in the following directory hierarchy in your *~/git* directory:
55 2.3 Setting up the components
56 =============================
58 2.3.1 Running MariaDb and Kafka
59 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
60 We will be using Docker to run our mariadb instance and Kafka. It will have the acm-runtime database running in it.
61 The easiest way to do this is to perform a SQL script. Create the *mariadb.sql* file in the directory *~/git*.
63 .. literalinclude:: files/mariadb.sql
66 Create the '*docker-compose.yaml*' using following code:
68 .. literalinclude:: files/docker-compose-local.yaml
71 Run the docker composition:
78 2.3.2 Setting topicParameterGroup for kafka localhost
79 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
80 It needs to set 'kafka' as topicCommInfrastructure and 'localhost:29092' as server.
81 In the clamp repo, you should find the file 'runtime-acm/src/main/resources/application.yaml'. This file (in the 'runtime' parameters section) may need to be altered as below:
83 .. literalinclude:: files/runtime-application.yaml
86 Same changes (in the 'participant' parameters section)
87 may need to be apply into the file 'participant/participant-impl/participant-impl-http/src/main/resources/config/application.yaml'.
89 .. literalinclude:: files/participant-http-application.yaml
92 And into the file 'participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/application.yaml'.
94 .. literalinclude:: files/participant-kubernetes-application.yaml
97 If the helm location is not '/usr/local/bin/helm' or the kubectl location is not '/usr/local/bin/kubectl', you have to update
98 the file 'participant/participant-impl/participant-impl-kubernetes/src/main/java/org/onap/policy/clamp/acm/participant/kubernetes/helm/HelmClient.java'.
100 2.3.3 Automation composition Runtime
101 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
102 To start the automation composition runtime service, we need to execute the following maven command from the "runtime-acm" directory in the clamp repo. Automation composition runtime uses the config file "src/main/resources/application.yaml" by default.
108 2.3.4 Helm chart repository
109 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
110 Kubernetes participant consumes helm charts from the local chart database as well as from a helm repository. For the smoke testing, we are going to add `nginx-stable` helm repository to the helm client.
111 The following command can be used to add nginx repository to the helm client.
115 helm repo add nginx-stable https://helm.nginx.com/stable
117 2.3.5 Kubernetes and http participants
118 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
119 The participants can be started from the clamp repository by executing the following maven command from the appropriate directories.
120 The participants will be started and get registered to the Automation composition runtime.
122 Navigate to the directory "participant/participant-impl/participant-impl-kubernetes/" and start kubernetes participant.
128 Navigate to the directory "participant/participant-impl/participant-impl-http/" and start http participant.
134 For building docker images of runtime-acm and participants:
138 cd ~/git/onap/policy/clamp/
139 mvn clean install -P docker
144 In this section, we will run through the sequence of steps in ACM workflow . The workflow can be triggered via Postman client.
148 Commission Automation composition TOSCA definitions to Runtime.
150 The Automation composition definitions are commissioned to runtime-acm which populates the ACM runtime database.
151 The following sample TOSCA template is commissioned to the runtime endpoint which contains definitions for kubernetes participant that deploys nginx ingress microservice
152 helm chart and a http POST request for http participant.
154 :download:`Tosca Service Template <tosca/smoke-test-participants.yaml>`
156 Commissioning Endpoint:
160 POST: https://<Runtime ACM IP> : <Port> /onap/policy/clamp/acm/v2/compositions
162 A successful commissioning gives 201 responses in the postman client.
164 3.2 Prime an Automation composition definition
165 ==============================================
166 Once the template is commissioned, we can prime it. This will connect AC definition with related participants.
172 PUT: https://<Runtime ACM IP> : <Port> /onap/policy/clamp/acm/v2/compositions/{compositionId}
179 "primeOrder": "PRIME"
182 A successful prime request gives 202 responses in the postman client.
184 3.3 Create New Instances of Automation composition
185 ==================================================
186 Once AC definition is primes, we can instantiate automation composition instances. This will create the instances with default state "UNDEPLOYED".
188 Instantiation Endpoint:
192 POST: https://<Runtime ACM IP> : <Port> /onap/policy/clamp/acm/v2/compositions/{compositionId}/instances
196 :download:`Instantiation json <json/acm-instantiation.json>`
198 A successful creation of new instance gives 201 responses in the postman client.
200 3.4 Change the State of the Instance
201 ====================================
202 When the automation composition is updated with state “DEPLOYED”, the Kubernetes participant fetches the node template for all automation composition elements and deploys the helm chart of each AC element into the cluster. The following sample json input is passed on the request body.
204 Automation Composition Update Endpoint:
208 PUT: https://<Runtime ACM IP> : <Port> /onap/policy/clamp/acm/v2/compositions/{compositionId}/instances/{instanceId}
214 "deployOrder": "DEPLOY"
218 A successful deploy request gives 202 responses in the postman client.
219 After the state changed to "DEPLOYED", nginx-ingress pod is deployed in the kubernetes cluster. And http participant should have posted the dummy data to the configured URL in the tosca template.
221 The following command can be used to verify the pods deployed successfully by kubernetes participant.
225 helm ls -n onap | grep nginx
226 kubectl get po -n onap | grep nginx
228 The overall state of the automation composition should be "DEPLOYED" to indicate both the participants has successfully completed the operations. This can be verified by the following rest endpoint.
230 Verify automation composition state:
234 GET: https://<Runtime ACM IP> : <Port>/onap/policy/clamp/acm/v2/compositions/{compositionId}/instances/{instanceId}
237 3.5 Automation Compositions can be "UNDEPLOYED" after deployment
238 ================================================================
240 By changing the state to "UNDEPLOYED", all the helm deployments under the corresponding automation composition will be uninstalled from the cluster.
241 Automation Composition Update Endpoint:
245 PUT: https://<Runtime ACM IP> : <Port> /onap/policy/clamp/acm/v2/compositions/{compositionId}/instances/{instanceId}
251 "deployOrder": "UNDEPLOY"
254 The nginx pod should be deleted from the k8s cluster.
256 This concludes the required smoke tests for http and kubernetes participants.