Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions marketplace/couchbase-byol.template
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
"echo \"Formatting disk...\"\n",

"DEVICE=/dev/sdk\n",
"MOUNTPOINT=/mnt/datadisk\n",
"MOUNTPOINT=/data/couchbase\n",

"echo \"Creating the filesystem.\"\n",
"mkfs -t ext4 ${DEVICE}\n",
Expand Down Expand Up @@ -294,8 +294,8 @@
" output=`./couchbase-cli node-init \\\n",
" --cluster=$nodePublicDNS \\\n",
" --node-init-hostname=$nodePublicDNS \\\n",
" --node-init-data-path=/mnt/datadisk/data \\\n",
" --node-init-index-path=/mnt/datadisk/index \\\n",
" --node-init-data-path=/data/couchbase/data \\\n",
" --node-init-index-path=/data/couchbase/index \\\n",
" --user=$adminUsername \\\n",
" --pass=$adminPassword`\n",
" echo node-init output \\'$output\\'\n",
Expand Down
6 changes: 3 additions & 3 deletions marketplace/couchbase-hourlypricing.template
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
"echo \"Formatting disk...\"\n",

"DEVICE=/dev/sdk\n",
"MOUNTPOINT=/mnt/datadisk\n",
"MOUNTPOINT=/data/couchbase\n",

"echo \"Creating the filesystem.\"\n",
"mkfs -t ext4 ${DEVICE}\n",
Expand Down Expand Up @@ -294,8 +294,8 @@
" output=`./couchbase-cli node-init \\\n",
" --cluster=$nodePublicDNS \\\n",
" --node-init-hostname=$nodePublicDNS \\\n",
" --node-init-data-path=/mnt/datadisk/data \\\n",
" --node-init-index-path=/mnt/datadisk/index \\\n",
" --node-init-data-path=/data/couchbase/data \\\n",
" --node-init-index-path=/data/couchbase/index \\\n",
" --user=$adminUsername \\\n",
" --pass=$adminPassword`\n",
" echo node-init output \\'$output\\'\n",
Expand Down
4 changes: 2 additions & 2 deletions scripts/server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ do
output=`./couchbase-cli node-init \
--cluster=$nodePublicDNS \
--node-init-hostname=$nodePublicDNS \
--node-init-data-path=/mnt/datadisk/data \
--node-init-index-path=/mnt/datadisk/index \
--node-init-data-path=/data/couchbase/data \
--node-init-index-path=/data/couchbase/index \
--user=$adminUsername \
--pass=$adminPassword`
echo node-init output \'$output\'
Expand Down
2 changes: 1 addition & 1 deletion scripts/util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
formatDataDisk ()
{
DEVICE=/dev/sdk
MOUNTPOINT=/mnt/datadisk
MOUNTPOINT=/data/couchbase

echo "Creating the filesystem."
mkfs -t ext4 ${DEVICE}
Expand Down