@@ -13,7 +13,7 @@ kind: "ArangoDeployment"
1313metadata :
1414 name : " example-arangodb-cluster"
1515spec :
16- mode : cluster
16+ mode : Cluster
1717` ` `
1818
1919Example more elaborate deployment definition:
@@ -24,7 +24,8 @@ kind: "ArangoDeployment"
2424metadata :
2525 name : " example-arangodb-cluster"
2626spec :
27- mode : cluster
27+ mode : Cluster
28+ environment : Production
2829 agents :
2930 count : 3
3031 args :
@@ -50,21 +51,21 @@ Below you'll find all settings of the `ArangoDeployment` custom resource.
5051Several settings are for various groups of servers. These are indicated
5152with `<group>` where `<group>` can be any of :
5253
53- - ` agents` for all agents of a `cluster ` or `resilientsingle ` pair.
54- - ` dbservers` for all dbservers of a `cluster `.
55- - ` coordinators` for all coordinators of a `cluster `.
56- - ` single` for all single servers of a `single ` instance or `resilientsingle ` pair.
57- - ` syncmasters` for all syncmasters of a `cluster `.
58- - ` syncworkers` for all syncworkers of a `cluster `.
54+ - ` agents` for all agents of a `Cluster ` or `ResilientSingle ` pair.
55+ - ` dbservers` for all dbservers of a `Cluster `.
56+ - ` coordinators` for all coordinators of a `Cluster `.
57+ - ` single` for all single servers of a `Single ` instance or `ResilientSingle ` pair.
58+ - ` syncmasters` for all syncmasters of a `Cluster `.
59+ - ` syncworkers` for all syncworkers of a `Cluster `.
5960
6061# ## `spec.mode: string`
6162
6263This setting specifies the type of deployment you want to create.
6364Possible values are :
6465
65- - ` cluster ` (default) Full cluster. Defaults to 3 agents, 3 dbservers & 3 coordinators.
66- - ` resilientsingle ` Resilient single pair. Defaults to 3 agents and 2 single servers.
67- - ` single ` Single server only (note this does not provide high availability or reliability).
66+ - ` Cluster ` (default) Full cluster. Defaults to 3 agents, 3 dbservers & 3 coordinators.
67+ - ` ResilientSingle ` Resilient single pair. Defaults to 3 agents and 2 single servers.
68+ - ` Single ` Single server only (note this does not provide high availability or reliability).
6869
6970This setting cannot be changed after the deployment has been created.
7071
@@ -73,9 +74,9 @@ This setting cannot be changed after the deployment has been created.
7374This setting specifies the type of environment in which the deployment is created.
7475Possible values are :
7576
76- - ` development ` (default) This value optimizes the deployment for development
77+ - ` Development ` (default) This value optimizes the deployment for development
7778 use. It is possible to run a deployment on a small number of nodes (e.g. minikube).
78- - ` production ` This value optimizes the deployment for production use.
79+ - ` Production ` This value optimizes the deployment for production use.
7980 It puts required affinity constraints on all pods to avoid agents & dbservers
8081 from running on the same machine.
8182
@@ -101,8 +102,8 @@ This setting specifies the type of storage engine used for all servers
101102in the cluster.
102103Possible values are :
103104
104- - ` mmfiles ` To use the MMfiles storage engine.
105- - ` rocksdb ` (default) To use the RocksDB storage engine.
105+ - ` MMFiles ` To use the MMfiles storage engine.
106+ - ` RocksDB ` (default) To use the RocksDB storage engine.
106107
107108This setting cannot be changed after the cluster has been created.
108109
@@ -211,7 +212,7 @@ The default value is empty.
211212This setting sets the type of message queue used by ArangoSync.
212213Possible values are :
213214
214- - ` direct ` (default) for direct HTTP connections between the 2 data centers.
215+ - ` Direct ` (default) for direct HTTP connections between the 2 data centers.
215216
216217# ## `spec.sync.tls.caSecretName: string`
217218
0 commit comments