2018-02-06 07:16:21 +00:00
|
|
|
# ArangoDB Kubernetes Operator
|
|
|
|
|
2018-04-06 11:58:19 +00:00
|
|
|
ArangoDB Kubernetes Operator helps do run ArangoDB deployments
|
|
|
|
on Kubernetes clusters.
|
2018-02-06 07:16:21 +00:00
|
|
|
|
2018-04-06 11:58:19 +00:00
|
|
|
To get started, follow the Installation instructions below and/or
|
|
|
|
read the [tutorial](./docs/Manual/Tutorials/Kubernetes/README.md).
|
|
|
|
|
|
|
|
## State
|
|
|
|
|
2018-06-19 09:47:56 +00:00
|
|
|
The ArangoDB Kubernetes Operator is still in **development**.
|
2018-04-06 11:58:19 +00:00
|
|
|
|
2018-04-11 06:49:40 +00:00
|
|
|
Running ArangoDB deployments (single, active-failover or cluster)
|
2018-06-19 09:47:56 +00:00
|
|
|
is reasonably stable, and we're in the process of validating
|
|
|
|
production readiness of various Kubernetes platforms.
|
2018-04-06 11:58:19 +00:00
|
|
|
|
|
|
|
The feature set of the ArangoDB Kubernetes Operator is close to what
|
2018-06-19 09:47:56 +00:00
|
|
|
it is intended to be.
|
2018-02-06 07:16:21 +00:00
|
|
|
|
2018-04-04 14:48:43 +00:00
|
|
|
[Documentation](./docs/README.md)
|
2018-03-12 11:18:50 +00:00
|
|
|
|
2018-06-19 10:02:21 +00:00
|
|
|
### Production readiness state
|
|
|
|
|
|
|
|
| Platform | Kubernetes version | State | Production ready | Remarks |
|
|
|
|
|----------------------|--------------------|-------|------------------|---------|
|
|
|
|
| Google GKE | 1.10 | Runs | No | Don't use micro nodes |
|
|
|
|
| Amazon EKS | 1.10 | ? | No |
|
|
|
|
| Amazon & Kops | 1.10 | Runs | No |
|
|
|
|
| Azure AKS | 1.10 | ? | No |
|
|
|
|
| OpenShift | 1.10 | Runs | No |
|
|
|
|
| Pivotal PKS | 1.10 | ? | No |
|
2018-06-19 10:03:19 +00:00
|
|
|
| Scaleway Kubernetes | 1.10 | ? | No |
|
2018-06-19 10:02:21 +00:00
|
|
|
| Bare metal (kubeadm) | 1.10 | Runs | No |
|
|
|
|
| Minikube | 1.10 | Runs | Not intended |
|
|
|
|
| Docker for Mac Edge | 1.10 | Runs | Not intended |
|
|
|
|
|
2018-03-20 10:33:37 +00:00
|
|
|
## Installation of latest release
|
|
|
|
|
|
|
|
```bash
|
2018-06-29 13:54:56 +00:00
|
|
|
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.2.2/manifests/crd.yaml
|
|
|
|
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.2.2/manifests/arango-deployment.yaml
|
2018-03-20 10:33:37 +00:00
|
|
|
# To use `ArangoLocalStorage`, also run
|
2018-06-29 13:54:56 +00:00
|
|
|
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.2.2/manifests/arango-storage.yaml
|
2018-06-19 09:47:56 +00:00
|
|
|
# To use `ArangoDeploymentReplication`, also run
|
2018-06-29 13:54:56 +00:00
|
|
|
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.2.2/manifests/arango-deployment-replication.yaml
|
2018-03-20 10:33:37 +00:00
|
|
|
```
|
|
|
|
|
2018-03-12 11:18:50 +00:00
|
|
|
## Building
|
|
|
|
|
|
|
|
```bash
|
|
|
|
DOCKERNAMESPACE=<your dockerhub account> make
|
2018-03-19 14:39:18 +00:00
|
|
|
kubectl apply -f manifests/crd.yaml
|
2018-03-19 10:09:20 +00:00
|
|
|
kubectl apply -f manifests/arango-deployment-dev.yaml
|
|
|
|
# To use `ArangoLocalStorage`, also run
|
|
|
|
kubectl apply -f manifests/arango-storage-dev.yaml
|
2018-06-19 09:47:56 +00:00
|
|
|
# To use `ArangoDeploymentReplication`, also run
|
|
|
|
kubectl apply -f manifests/arango-deployment-replication-dev.yaml
|
2018-03-12 11:18:50 +00:00
|
|
|
```
|