diff options
author | Joanna Jeremicz <joanna.jeremicz@nokia.com> | 2019-10-18 14:48:17 +0200 |
---|---|---|
committer | Joanna Jeremicz <joanna.jeremicz@nokia.com> | 2019-10-22 12:00:11 +0200 |
commit | 67552698c260536318ceef5026cdb25fc0aa3c9c (patch) | |
tree | eb7bc7df3a5312cf2dba260a13e5ea127b1bd208 | |
parent | b03491ed5f17d635cff18d58a6645bd11d61775b (diff) |
Update installation description
Fix for bug (INT-1181) PRH CSITs use incorrect path for service-instance. Manual steps description.
Issue-ID: INT-1181
Signed-off-by: Joanna Jeremicz <joanna.jeremicz@nokia.com>
Change-Id: Iec08c2f1c9627541ded7d2ec7919e35814c8bd2f
-rw-r--r-- | docs/sections/services/prh/installation.rst | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/docs/sections/services/prh/installation.rst b/docs/sections/services/prh/installation.rst index 45700411..5f3b36c0 100644 --- a/docs/sections/services/prh/installation.rst +++ b/docs/sections/services/prh/installation.rst @@ -63,4 +63,24 @@ Heartbeat: http://<container_address>:8100/heartbeat or https://<container_addre Start prh: http://<container_address>:8100/start or https://<container_address>:8433/start -Stop prh: http://<container_address>:8100/stopPrh or https://<container_address>:8433/stopPrh
\ No newline at end of file +Stop prh: http://<container_address>:8100/stopPrh or https://<container_address>:8433/stopPrh + + +Fix for bug (INT-1181) *PRH CSITs use incorrect path for service-instance* +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +**Undeploy PRH with current version (1.3.1) and manually deploy it with version 1.3.2. Steps to install the correction:** + +- Fetch the correct blueprint from nexus - k8s-prh.yaml: https://nexus.onap.org/content/sites/raw/org.onap.dcaegen2.platform.blueprints/R5/blueprints/ (It should contain *aai.aaiClientConfiguration.baseUrl* parameter and prh-app-server:**1.3.2**) +- Undeploy existing PRH service (1.3.1) by going into k8s and bootstrap pod. + + - Enter the bootstrap pod: ``kubectl exec -it [pod name] -n onap /bin/sh`` + - Uninstall PRH: ``cfy executions start -d prh uninstall`` + - Delete deployment: ``cfy deployments delete prh`` + - Delete blueprint: ``cfy blueprints delete prh`` + - Replace the old blueprint with the new one (blueprints/k8s-prh.yaml) + - Upload the blueprint to cfy: ``cfy blueprints upload -b prh /blueprints/k8s-prh.yaml`` + - Create deployment: ``cfy deployments create -b prh prh`` + - Install PRH: ``cfy executions start -d prh install`` + +- Verify that PRH pod is up and running. |