Merge "Create Honolulu release notes" into honolulu
authorRam Krishna Verma <ram_krishna.verma@bell.ca>
Mon, 29 Mar 2021 19:33:03 +0000 (19:33 +0000)
committerGerrit Code Review <gerrit@onap.org>
Mon, 29 Mar 2021 19:33:03 +0000 (19:33 +0000)
docs/drools/feature_nolocking.rst [new file with mode: 0644]
docs/drools/pdpdEngine.rst

diff --git a/docs/drools/feature_nolocking.rst b/docs/drools/feature_nolocking.rst
new file mode 100644 (file)
index 0000000..5399f8b
--- /dev/null
@@ -0,0 +1,38 @@
+
+.. This work is licensed under a Creative Commons Attribution 4.0 International License.
+.. http://creativecommons.org/licenses/by/4.0
+
+*******************
+Feature: no locking
+*******************
+
+.. contents::
+    :depth: 3
+
+The no-locking feature allows applications to use a Lock Manager that always succeeds.  It does not deny
+acquiring resource locks.
+
+To utilize the no-locking feature, first stop policy engine, disable other locking features, and then enable it
+using the "*features*" command.
+
+In an official OOM installation, place a script with a .pre.sh suffix:
+
+    .. code-block:: bash
+       :caption: features.pre.sh
+        #!/bin/sh
+
+        sh -c "features disable distributed-locking"
+        sh -c "features enable no-locking"
+
+
+under the directory:
+
+    .. code-block:: bash
+        oom/kubernetes/policy/components/policy-drools-pdp/resources/configmaps
+
+
+and rebuild the policy charts.
+
+At container initialization, the distributed-locking will be disabled, and the no-locking feature will be enabled.
+
+End of Document
index 360d85e..d19eac1 100644 (file)
@@ -783,6 +783,7 @@ unnecessary or have not been thoroughly tested:
    feature_sesspersist.rst
    feature_statemgmt.rst
    feature_testtransaction.rst
+   feature_nolocking.rst
 
 Data Migration
 ==============