@@ -48,23 +48,26 @@ at cluster level.
4848
4949For now, any recent Kubernetes cluster will do (e.g. ` minikube ` ).
5050
51- Then run (replace ` <version> ` with the version of the operator that you want to install) :
51+ Then run:
5252
5353``` bash
54- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/< version> /manifests/arango-deployment.yaml
55- # Optional
56- kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/< version> /manifests/arango-storage.yaml
54+ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.8/manifests/arango-crd.yaml
55+ # 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
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
5760```
5861
59- The first command installs two ` CustomResourceDefinitions ` in your Kubernetes cluster:
62+ The first commands install two ` CustomResourceDefinitions ` in your Kubernetes cluster:
6063
6164- ` ArangoDeployment ` is the resource used to deploy ArangoDB database.
6265- ` ArangoLocalStorage ` is the resource used to provision ` PersistentVolumes ` on local storage.
6366
64- The second command installs a ` Deployment ` that runs the operator that controls
67+ The third command installs a ` Deployment ` that runs the operator that controls
6568` ArangoDeployment ` resources.
6669
67- The optional third command installs a ` Deployment ` that runs the operator that
70+ The optional last command installs a ` Deployment ` that runs the operator that
6871provides ` PersistentVolumes ` on local disks of the cluster nodes.
6972Use this when running on bare-metal or if there is no provisioner for fast
7073storage in your Kubernetes cluster.
0 commit comments