Skip to content

Commit

Permalink
Updated to v1.0.9 of install script
Browse files Browse the repository at this point in the history
Added ability to choose 7.0.0-beta
  • Loading branch information
malscent committed Jun 11, 2021
1 parent a2a269f commit be5a825
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 11 deletions.
3 changes: 2 additions & 1 deletion aws/CouchbaseServer/couchbase-amzn-lnx2.template
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"6.0.3",
"6.0.2",
"6.0.1",
"6.0.0"
"6.0.0",
"7.0.0-beta"
]
},
"InstanceType": {
Expand Down
4 changes: 2 additions & 2 deletions aws/CouchbaseServer/embedded_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ else
fi

CLUSTER_HOST=$rallyPublicDNS
# https://github.com/couchbase-partners/marketplace-scripts/releases/download/v1.0.7/couchbase_installer.sh gets replaced during build
# __SCRIPT_URL__ gets replaced during build
if [[ ! -e "couchbase_installer.sh" ]]; then
curl -L --output "couchbase_installer.sh" "https://github.com/couchbase-partners/marketplace-scripts/releases/download/v1.0.7/couchbase_installer.sh"
curl -L --output "couchbase_installer.sh" "__SCRIPT_URL__"
fi

bash ./couchbase_installer.sh -ch "$CLUSTER_HOST" -u "$USERNAME" -p "$PASSWORD" -v "$VERSION" -os AMAZON -e AWS -s -c -d
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"6.0.3",
"6.0.2",
"6.0.1",
"6.0.0"
"6.0.0",
"7.0.0-beta"
]
},
"SyncGatewayInstanceCount": {
Expand Down
4 changes: 2 additions & 2 deletions aws/CouchbaseServerAndSyncGateway/embedded_gateway.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ aws ec2 create-tags \

CLUSTER_HOST=$(curl -s http://169.254.169.254/latest/meta-data/public-hostname)

# https://github.com/couchbase-partners/marketplace-scripts/releases/download/v1.0.7/couchbase_installer.sh gets replaced during build
# __SCRIPT_URL__ gets replaced during build
if [[ ! -e "couchbase_installer.sh" ]]; then
curl -L --output "couchbase_installer.sh" "https://github.com/couchbase-partners/marketplace-scripts/releases/download/v1.0.7/couchbase_installer.sh"
curl -L --output "couchbase_installer.sh" "__SCRIPT_URL__"
fi

bash ./couchbase_installer.sh -ch "$CLUSTER_HOST" -u "$USERNAME" -p "$PASSWORD" -v "$VERSION" -os AMAZON -e AWS -c -d -g
Expand Down
4 changes: 2 additions & 2 deletions aws/CouchbaseServerAndSyncGateway/embedded_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ else
fi

CLUSTER_HOST=$rallyPublicDNS
# https://github.com/couchbase-partners/marketplace-scripts/releases/download/v1.0.7/couchbase_installer.sh gets replaced during build
# __SCRIPT_URL__ gets replaced during build
if [[ ! -e "couchbase_installer.sh" ]]; then
curl -L --output "couchbase_installer.sh" "https://github.com/couchbase-partners/marketplace-scripts/releases/download/v1.0.7/couchbase_installer.sh"
curl -L --output "couchbase_installer.sh" "__SCRIPT_URL__"
fi

bash ./couchbase_installer.sh -ch "$CLUSTER_HOST" -u "$USERNAME" -p "$PASSWORD" -v "$VERSION" -os AMAZON -e AWS -s -c -d
Expand Down
4 changes: 2 additions & 2 deletions aws/CouchbaseSyncGateway/embedded_gateway.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ aws ec2 create-tags \

CLUSTER_HOST=$(curl -s http://169.254.169.254/latest/meta-data/public-hostname)

# https://github.com/couchbase-partners/marketplace-scripts/releases/download/v1.0.7/couchbase_installer.sh gets replaced during build
# __SCRIPT_URL__ gets replaced during build
if [[ ! -e "couchbase_installer.sh" ]]; then
curl -L --output "couchbase_installer.sh" "https://github.com/couchbase-partners/marketplace-scripts/releases/download/v1.0.7/couchbase_installer.sh"
curl -L --output "couchbase_installer.sh" "__SCRIPT_URL__"
fi

bash ./couchbase_installer.sh -ch "$CLUSTER_HOST" -u "$USERNAME" -p "$PASSWORD" -v "$VERSION" -os AMAZON -e AWS -c -d -g
Expand Down
2 changes: 1 addition & 1 deletion script_url.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://github.com/couchbase-partners/marketplace-scripts/releases/download/v1.0.8/couchbase_installer.sh
https://github.com/couchbase-partners/marketplace-scripts/releases/download/v1.0.9/couchbase_installer.sh

0 comments on commit be5a825

Please sign in to comment.