summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorqingshuting <qingshuting1@huawei.com>2022-11-08 11:20:27 +0800
committerqingshuting <qingshuting1@huawei.com>2022-11-08 11:20:27 +0800
commit67948ca0e6eca933d8715b48959c342071c89d4a (patch)
treef495a5bb686814964dcfddef8c0dbc78a583ceaf
parent958df7b5a982a8633135bcd8a42a5339cb5fc7b4 (diff)
[SliceDocs] Docs Updates
Issue-ID: DCAEGEN2-3286 Signed-off-by: qingshuting <qingshuting1@huawei.com> Change-Id: Iaf8d9a31a6c0da72b853d1188d77c785eb20aa65
-rw-r--r--docs/sections/services/slice-analysis-ms/runtime_configuration.rst27
1 files changed, 21 insertions, 6 deletions
diff --git a/docs/sections/services/slice-analysis-ms/runtime_configuration.rst b/docs/sections/services/slice-analysis-ms/runtime_configuration.rst
index c1d590c7..d8f711fc 100644
--- a/docs/sections/services/slice-analysis-ms/runtime_configuration.rst
+++ b/docs/sections/services/slice-analysis-ms/runtime_configuration.rst
@@ -1,6 +1,5 @@
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0
-.. _runtime_configuration:
Runtime Configuration
=====================
@@ -10,12 +9,11 @@ This page will explain how runtime configuration works, and how to utilize it. H
Architecture
------------
-The architecture below depicts the Slice MS as a part of DCAE.
-.. image:: ./slice_analysis_ms_architecture.jpg
+The architecture below depicts how runtime configuration works in the Slice MS as a part of DCAE.
-Slice Analysis MS provides runtime configuration feature since Kohn Version.
+.. image:: ../../images/R11_architecture_diagram.png
-Unlike the SON-Handler MS, which passes runtime configuration through Policy - Policy Handler - Cloudify Manager - Consul Cluster - CBS - SONHandler, the Slice Analysis MS provides a lighter and easier way to send runtime configurations in seconds.
+Slice Analysis MS provides runtime configuration feature since Kohn Version.
For the Slice Analysis MS, there is a CBS thread running that will continually fetch the latest policies from the XCAML PDP engine. So if you want to pass runtime configuration, you can format your configuration contents in the form of an XCAML policy, then push it into the XCAML PDP engine. The Slice Analysis MS will get updated within seconds.
@@ -28,7 +26,9 @@ Deployment
- Enable "dcae-slice-analysis-ms" in oom /oom/kubernetes/dcaegen2-services/values.yaml.
1. Enable dcae-slice-analysis-ms in values.yaml. When using the helm chart of OOM to pull up the whole onap environment, dcae-slice-analysis-ms will be automatically installed.
+
.. code-block:: bash
+
dcae-slice-analysis-ms:
enabled: true
logConfigMapNamePrefix: '{{ include "common.release" . }}-dcaegen2-services'
@@ -36,7 +36,9 @@ Deployment
- Original params set in oom /oom/kubernetes/dcaegen2-services/components/dcae-slice-analysis-ms/values.yaml have to be modified.
1. Uncomment the following lines. "duration" is the interval of a thread in policy sync container to retrieve latest policy from XCAML PDP engine. The unit of "duration" is seconds.
+
.. code-block:: bash
+
dcaePolicySyncImage: onap/org.onap.dcaegen2.deployments.dcae-services-policy-sync:1.0.1
policies:
duration:
@@ -48,6 +50,7 @@ Deployment
Workflow
~~~~~~~~
+
.. image:: ./runtime_config_work_flow.jpg
To realize the runtime configuration feature for SliceMS, similarly to SON-Handler, we add a "policy sync" container for Slice MS. There are 3 containers in Slice MS, "dcae-slice-analysis-ms", "dcae-slice-analysis-ms-filebeat" and "policy-sync".
@@ -66,11 +69,15 @@ Steps to Use Runtime Configuration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1. Create the policy type
command
+
.. code-block:: bash
+
curl -k -v --user 'username:password' -X POST "https://policyApiIp:6969/policy/api/v1/policytypes" -H "Content-Type:application/json" -H "Accept: application/json" -d @policy_type.json
request body: policy_type.json
+
.. code-block:: bash
+
{
"tosca_definitions_version": "tosca_simple_yaml_1_1_0",
"policy_types": {
@@ -102,11 +109,15 @@ Steps to Use Runtime Configuration
2. Create the policy
command: {versionNumber} here needs to match the "policies"-"version" in the request body "slicems_config_policy.json"
+
.. code-block:: bash
+
curl --silent -k -w %{http_code} --user 'username:password' -X POST "https://policyApiIp:6969/policy/api/v1/policytypes/onap.policies.monitoring.docker.slicems.app/versions/{versionNumber}}/policies" -H "Accept: application/json" -H "Content-Type: application/json" -d @slicems_config_policy.json
request body: slicems_config_policy.json
+
.. code-block:: bash
+
{
"tosca_definitions_version": "tosca_simple_yaml_1_1_0",
"topology_template": {
@@ -133,11 +144,15 @@ Steps to Use Runtime Configuration
3. Deploy the policy
command
+
.. code-block:: bash
+
curl -w %{http_code} --silent -k --user 'username:password' -X POST "https://policyPAPApi:6969/policy/pap/v1/pdps/policies" -H "Accept: application/json" -H "Content-Type: application/json" -d @push.json
request body: push.json
+
.. code-block:: bash
+
{
"policies": [
{
@@ -148,6 +163,7 @@ Steps to Use Runtime Configuration
}
4. Verify in SliceMS that configurations received
+
.. image:: ./example_slice_update_policy.png
How to Develop Your Own Runtime Configuration
@@ -157,4 +173,3 @@ How to Develop Your Own Runtime Configuration
3. Deploy the policy
4. Verify in SliceMS that configurations received. (Needs to write code in SliceMS to deal with your configurations in advance.)
-
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507