From: Pamela Dragosh Date: Wed, 7 Nov 2018 00:02:49 +0000 (+0000) Subject: Merge "Update policy cookbook documentation" into casablanca X-Git-Tag: 1.3.3~6 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=8c082fe337098954693af0ec3112722b882a63a9;p=policy%2Fengine.git Merge "Update policy cookbook documentation" into casablanca --- 8c082fe337098954693af0ec3112722b882a63a9 diff --cc docs/platform/cookbook.rst index 4bee685fd,3281d571c..c4a2c7cf3 --- a/docs/platform/cookbook.rst +++ b/docs/platform/cookbook.rst @@@ -104,33 -150,42 +150,62 @@@ PDP-D Recipes (inside the "drools" cont :caption: Manual Healthcheck Invokation :linenos: - # Assuming the healthcheck service credentials have not been changed - # post-installation within the drools container - source ${POLICY_HOME}/config/feature-healthcheck.conf - curl --silent --user "${HEALTHCHECK_USER}:${HEALTHCHECK_PASSWORD}" - -X GET http://localhost:6969/healthcheck | python -m json.tool + curl --silent --user "${HEALTHCHECK_USER}:${HEALTHCHECK_PASSWORD}" + -X GET https://localhost:6969/healthcheck | python -m json.tool + + + .. code-block:: bash + :caption: Start a telemetry shell + :linenos: + + telemetry + + + .. code-block:: bash + :caption: See all the configured loggers + :linenos: + + curl -k --silent --user "${ENGINE_MANAGEMENT_USER}:${ENGINE_MANAGEMENT_PASSWORD}" + https://localhost:9696/policy/pdp/engine/tools/loggers + + + .. code-block:: bash + :caption: See the logging level for a given logger (for example the network logger): + :linenos: + + curl -k --silent --user"${ENGINE_MANAGEMENT_USER}:${ENGINE_MANAGEMENT_PASSWORD}" + https://localhost:9696/policy/pdp/engine/tools/loggers/network + + + .. code-block:: bash + :caption: Modify the logging level for a given logger (for example the network logger): + :linenos: + + curl -k --silent --user"${ENGINE_MANAGEMENT_USER}:${ENGINE_MANAGEMENT_PASSWORD}" + -X PUT https://localhost:9696/policy/pdp/engine/tools/loggers/network/WARN + +PAP Recipes (inside the "pap" container) +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + .. code-block:: bash + :caption: Bypass Portal Authentication with the Policy Web UI + :linenos: + + edit: /opt/app/policy/servers/console/webapps/onap/WEB-INF/classes/portal.properties + comment out: #role_access_centralized = remote + restart pap: policy.sh stop; policy.sh start; + + + .. code-block:: bash + :caption: Access the Policy Web UI without going through the Portal UI + :linenos: + + https://:8443/onap/login.htm (Heat) + https://:30219/onap/login.htm (Kubernetes) + + End of Document .. SSNote: Wiki page ref. https://wiki.onap.org/display/DW/Policy+Cookbook