diff options
author | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2021-06-14 14:09:47 +0200 |
---|---|---|
committer | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2021-06-29 10:44:39 +0200 |
commit | a30b72b8e9cb84b5c41f136d4fba366a2045ba9b (patch) | |
tree | d8ffab670057abf6f6fe6244546637b0e0202ad0 | |
parent | 91bbe070fa15a51d19adb0884f401b553042c171 (diff) |
[TOOLS] Fix helm-healer.sh usage description
"-s" option should be set to Onap's PVs location only.
"/dockerdata-nfs" can contain other apps PVs (e.g. kube-prometheus)
Change-Id: I868f8feac7f5602e04e7c7b7be3af3257822a264
Issue-ID: INT-1926
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
-rwxr-xr-x | tools/helm-healer.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/helm-healer.sh b/tools/helm-healer.sh index ab79be8e..9395e079 100755 --- a/tools/helm-healer.sh +++ b/tools/helm-healer.sh @@ -57,17 +57,17 @@ USAGE EXAMPLES Usage 1: (simple heuristics - redeploy failed components): - ${CMD} -n onap -f /some/override1.yml -s /dockerdata-nfs + ${CMD} -n onap -f /some/override1.yml -s /dockerdata-nfs/onap Usage 2: (redeploy ONLY explicitly listed components): - ${CMD} -n onap -f /some/override1.yml -s /dockerdata-nfs \\ + ${CMD} -n onap -f /some/override1.yml -s /dockerdata-nfs/onap \\ -c onap-aaf -c onap-sdc -c onap-portal Usage 3: (delete EVERYTHING and redeploy): - ${CMD} -n onap -f /some/override1.yml -s /dockerdata-nfs --delete-all + ${CMD} -n onap -f /some/override1.yml -s /dockerdata-nfs/onap --delete-all Usage 4: (delete EVERYTHING and DO NOT redeploy - clean env.) - ${CMD} -n onap -s /dockerdata-nfs --delete-all --clean-only + ${CMD} -n onap -s /dockerdata-nfs/onap --delete-all --clean-only NOTES |