@@ -51,27 +51,30 @@ For now, any recent Kubernetes cluster will do (e.g. `minikube`).
51
51
Then run:
52
52
53
53
``` bash
54
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.8/manifests/arango-crd.yaml
54
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/< version> /manifests/arango-crd.yaml
55
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/< version> /manifests/arango-deployment.yaml
55
56
# To use `ArangoLocalStorage`, also run
56
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.8/manifests/arango-storage.yaml
57
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.8/manifests/arango-deployment.yaml
57
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/< version> /manifests/arango-storage.yaml
58
58
# To use `ArangoDeploymentReplication`, also run
59
- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.8 /manifests/arango-deployment-replication.yaml
59
+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/< version > /manifests/arango-deployment-replication.yaml
60
60
```
61
61
62
- The first commands install two ` CustomResourceDefinitions ` in your Kubernetes cluster:
62
+ The first command installs two ` CustomResourceDefinitions ` in your Kubernetes cluster:
63
63
64
64
- ` ArangoDeployment ` is the resource used to deploy ArangoDB database.
65
65
- ` ArangoLocalStorage ` is the resource used to provision ` PersistentVolumes ` on local storage.
66
66
67
- The third command installs a ` Deployment ` that runs the operator that controls
67
+ The second command installs a ` Deployment ` that runs the operator that controls
68
68
` ArangoDeployment ` resources.
69
69
70
- The optional last command installs a ` Deployment ` that runs the operator that
70
+ The optional third command installs a ` Deployment ` that runs the operator that
71
71
provides ` PersistentVolumes ` on local disks of the cluster nodes.
72
72
Use this when running on bare-metal or if there is no provisioner for fast
73
73
storage in your Kubernetes cluster.
74
74
75
+ The optioal fourth command installs a ` Deployment ` that runs the
76
+ operator that takes care of DC2DC replications.
77
+
75
78
## Deploying your first ArangoDB database
76
79
77
80
The first database we are going to deploy is a single server database.
0 commit comments