Skip to content

Commit

Permalink
Merge pull request #147 from malscent/main
Browse files Browse the repository at this point in the history
Update for Couchbase Server 7.1.0
  • Loading branch information
malscent authored May 9, 2022
2 parents 4d4cb88 + ad7390c commit b657dbd
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 9 deletions.
5 changes: 3 additions & 2 deletions aws/CouchbaseServer/couchbase-amzn-lnx2.template
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"ServerVersion": {
"Description": "Couchbase Server Version",
"Type": "String",
"Default": "7.0.3",
"Default": "7.1.0",
"AllowedValues": [
"6.6.5",
"6.6.4",
Expand All @@ -107,7 +107,8 @@
"6.0.1",
"6.0.0",
"7.0.2",
"7.0.3"
"7.0.3",
"7.1.0"
]
},
"CoreInstanceType": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@
"ServerVersion": {
"Description": "Couchbase Server Version",
"Type": "String",
"Default": "6.6.5",
"Default": "7.1.0",
"AllowedValues": [
"7.1.0",
"7.0.3",
"6.6.5",
"6.6.4",
Expand Down
8 changes: 6 additions & 2 deletions azure/CouchbaseServer-Application/createUiDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -355,11 +355,15 @@
"type": "Microsoft.Common.DropDown",
"label": "Server Version",
"toolTip": "What version of Couchbase Server is to be installed",
"defaultValue": "7.0.3 (recommended)",
"defaultValue": "7.1.0 (recommended)",
"constraints": {
"allowedValues": [
{
"label": "7.0.3 (recommended)",
"label": "7.1.0 (recommended)",
"value": "7.1.0"
},
{
"label": "7.0.3",
"value": "7.0.3"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,12 +304,16 @@
"name": "serverVersion",
"type": "Microsoft.Common.DropDown",
"label": "Server Version",
"defaultValue": "7.0.3",
"defaultValue": "7.1.0 (recommended)",
"toolTip": "Server Version",
"constraints": {
"allowedValues": [
{
"label": "7.0.3 (recommended)",
"label": "7.1.0 (recommended)",
"value": "7.1.0"
},
{
"label": "7.0.3",
"value": "7.0.3"
},
{
Expand Down
3 changes: 2 additions & 1 deletion gcp/couchbase-server/couchbase.py.schema
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ properties:
default: 20
serverVersion:
type: string
default: 7.0.3
default: 7.1.0
enum:
- 7.1.0
- 7.0.3
- 7.0.2
- 6.6.5
Expand Down
3 changes: 2 additions & 1 deletion gcp/couchbase-server/resources/instance_template.py.schema
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ properties:
default: default
serverVersion:
type: string
default: 7.0.3
default: 7.1.0
enum:
- 7.1.0
- 7.0.3
- 7.0.2
- 6.6.3
Expand Down

0 comments on commit b657dbd

Please sign in to comment.