@@ -51,27 +51,30 @@ For now, any recent Kubernetes cluster will do (e.g. `minikube`).
5151Then run:
5252
5353``` 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
5556# 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
5858# 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
6060```
6161
62- The first commands install two ` CustomResourceDefinitions ` in your Kubernetes cluster:
62+ The first command installs two ` CustomResourceDefinitions ` in your Kubernetes cluster:
6363
6464- ` ArangoDeployment ` is the resource used to deploy ArangoDB database.
6565- ` ArangoLocalStorage ` is the resource used to provision ` PersistentVolumes ` on local storage.
6666
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
6868` ArangoDeployment ` resources.
6969
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
7171provides ` PersistentVolumes ` on local disks of the cluster nodes.
7272Use this when running on bare-metal or if there is no provisioner for fast
7373storage in your Kubernetes cluster.
7474
75+ The optioal fourth command installs a ` Deployment ` that runs the
76+ operator that takes care of DC2DC replications.
77+
7578## Deploying your first ArangoDB database
7679
7780The first database we are going to deploy is a single server database.
0 commit comments