From 517cea22d363a51ba8c8aa1d81358123ae1709a7 Mon Sep 17 00:00:00 2001 From: twerthi Date: Thu, 6 Aug 2020 11:17:03 -0700 Subject: [PATCH 1/3] Adding basic examples to path --- .../octopus.server.exe-command-line/path.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/octopus-rest-api/octopus.server.exe-command-line/path.md b/docs/octopus-rest-api/octopus.server.exe-command-line/path.md index e5cb713908..ee8444d243 100644 --- a/docs/octopus-rest-api/octopus.server.exe-command-line/path.md +++ b/docs/octopus-rest-api/octopus.server.exe-command-line/path.md @@ -38,3 +38,16 @@ Or one of the common options: --help Show detailed help for this command ``` +## Basic examples +This example will configure all paths (artifacts, task logs, packages, and telemetry) to a network share +```text +octopus.server path --clusterShared \\OctoShared\OctopusData +``` + +This example will configure the paths for the different components individually +```text +octopus.server path --artifacts \\Octoshared\OctopusData\Artifacts +octopus.server path --taskLogs \\Octoshared\OctopusData\TaskLogs +octopus.server path --nugetRepository \\Octoshared\OctopusData\Packages +octopus.server --telemetry \\Octoshared\OctopusData\Telemetry +``` \ No newline at end of file From 5555de66b3dba6d4795af7351a45ab915e5a0eb9 Mon Sep 17 00:00:00 2001 From: wordlee Date: Fri, 7 Aug 2020 14:06:55 +1000 Subject: [PATCH 2/3] Update docs/octopus-rest-api/octopus.server.exe-command-line/path.md --- docs/octopus-rest-api/octopus.server.exe-command-line/path.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/octopus-rest-api/octopus.server.exe-command-line/path.md b/docs/octopus-rest-api/octopus.server.exe-command-line/path.md index ee8444d243..dee1d86091 100644 --- a/docs/octopus-rest-api/octopus.server.exe-command-line/path.md +++ b/docs/octopus-rest-api/octopus.server.exe-command-line/path.md @@ -44,10 +44,10 @@ This example will configure all paths (artifacts, task logs, packages, and telem octopus.server path --clusterShared \\OctoShared\OctopusData ``` -This example will configure the paths for the different components individually +This example configures the paths for the different components individually: ```text octopus.server path --artifacts \\Octoshared\OctopusData\Artifacts octopus.server path --taskLogs \\Octoshared\OctopusData\TaskLogs octopus.server path --nugetRepository \\Octoshared\OctopusData\Packages octopus.server --telemetry \\Octoshared\OctopusData\Telemetry -``` \ No newline at end of file +``` From f39d66d4bff707f70afeb17805f70567e127b790 Mon Sep 17 00:00:00 2001 From: wordlee Date: Fri, 7 Aug 2020 14:07:17 +1000 Subject: [PATCH 3/3] Update docs/octopus-rest-api/octopus.server.exe-command-line/path.md --- docs/octopus-rest-api/octopus.server.exe-command-line/path.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/octopus-rest-api/octopus.server.exe-command-line/path.md b/docs/octopus-rest-api/octopus.server.exe-command-line/path.md index dee1d86091..da93609c7d 100644 --- a/docs/octopus-rest-api/octopus.server.exe-command-line/path.md +++ b/docs/octopus-rest-api/octopus.server.exe-command-line/path.md @@ -39,7 +39,7 @@ Or one of the common options: ``` ## Basic examples -This example will configure all paths (artifacts, task logs, packages, and telemetry) to a network share +This example configures all paths (artifacts, task logs, packages, and telemetry) to a network share: ```text octopus.server path --clusterShared \\OctoShared\OctopusData ```