1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
ArangoDB Kubernetes Operator - Start ArangoDB on Kubernetes in 5min
Find a file
2019-04-08 10:57:08 +02:00
.vscode File header template added 2018-02-09 11:14:03 +01:00
dashboard Updated lodash. 2019-02-12 17:14:46 +01:00
deps Do not use super user token but restricted token for liveness and readiness. 2019-04-04 13:31:45 +02:00
docs Added url to k8s docu. 2019-04-03 09:47:59 +02:00
examples Experimental tool to reboot a cluster from volumes. 2019-03-12 15:51:32 +01:00
manifests Updated docs. 2019-04-02 11:15:28 +02:00
pkg Hold Mutex for shorter or not at all if not needed. 2019-04-08 09:26:45 +02:00
scripts Fixed some inconsistent naming. 2019-03-11 10:38:57 +01:00
tests Give default image for test. 2019-04-08 10:57:08 +02:00
tools Get rid of automatic CHANGELOG generation. 2019-02-19 17:42:21 +01:00
.dockerignore Added dashboard to dockerignore 2018-07-09 16:25:41 +02:00
.gitignore Excluded .envrc 2018-06-07 09:25:08 +02:00
CHANGELOG.md CHANGELOG. 2019-04-05 15:59:42 +02:00
Dockerfile Initial API objects & vendoring 2018-02-09 11:11:33 +01:00
Dockerfile.test Creating test framework 2018-02-20 09:49:01 +01:00
Jenkinsfile.groovy Added more test environment for license stuff. 2018-12-03 14:34:58 +01:00
LICENSE Add LICENSE 2018-04-03 08:20:49 +02:00
lifecycle.go Minor 2018-08-30 08:23:13 +02:00
main.go Fix image selection for side car injection. 2018-11-15 10:22:10 +01:00
MAINTAINERS.md Get rid of automatic CHANGELOG generation. 2019-02-19 17:42:21 +01:00
Makefile Merge pull request #356 from arangodb/feature/reboot 2019-03-25 17:34:56 +01:00
README.md Modify warning. 2019-03-04 12:01:19 +01:00
reboot.go Added labels. 2019-03-15 10:00:20 +01:00
storage.go Rename repository to kube-arangodb 2018-03-13 16:25:33 +01:00
VERSION Better wording. 2019-04-04 16:51:55 +02:00

ArangoDB Kubernetes Operator

Docker Pulls

ArangoDB Kubernetes Operator helps do run ArangoDB deployments on Kubernetes clusters.

To get started, follow the Installation instructions below and/or read the tutorial.

State

The ArangoDB Kubernetes Operator is still in development.

Running ArangoDB deployments (single, active-failover or cluster) is reasonably stable, and we're in the process of validating production readiness of various Kubernetes platforms.

The feature set of the ArangoDB Kubernetes Operator is close to what it is intended to be.

Documentation

Production readiness state

Platform Kubernetes version ArangoDB version State Production ready Remarks
Google GKE 1.10 >= 3.3.13 Runs Yes Don't use micro nodes
Google GKE 1.11 >= 3.3.13 Runs Yes Don't use micro nodes
Amazon EKS 1.11 >= 3.3.13 Runs Yes
Pivotal PKS 1.11 >= 3.3.13 Runs Yes
Amazon & Kops 1.10 >= 3.3.13 Runs No
Azure AKS 1.10 >= 3.3.13 Runs No
OpenShift 1.10 >= 3.3.13 Runs No
Bare metal (kubeadm) 1.10 >= 3.3.13 Runs No
Minikube 1.10 >= 3.3.13 Runs Not intended
Docker for Mac Edge 1.10 >= 3.3.13 Runs Not intended
Scaleway Kubernetes 1.10 >= 3.3.13 ? No

Installation of latest release using Helm

WARNING: There is a problem with rolling upgrades in version 0.3.8. DO NOT USE 0.3.8 FOR ROLLING UPGRADES. If you are still using 0.3.8, then upgrade to 0.3.9 of the operator first before running any rolling upgrade.

# The following will install the custom resources required by the operators.
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.9/kube-arangodb-crd.tgz
# The following will install the operator for `ArangoDeployment` &
# `ArangoDeploymentReplication` resources.
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.9/kube-arangodb.tgz
# To use `ArangoLocalStorage`, also run
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.9/kube-arangodb-storage.tgz

Installation of latest release using Kubectl

kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.9/manifests/arango-crd.yaml
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.9/manifests/arango-deployment.yaml
# To use `ArangoLocalStorage`, also run
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.9/manifests/arango-storage.yaml
# To use `ArangoDeploymentReplication`, also run
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.9/manifests/arango-deployment-replication.yaml

Building

DOCKERNAMESPACE=<your dockerhub account> make
kubectl apply -f manifests/arango-deployment-dev.yaml
# To use `ArangoLocalStorage`, also run
kubectl apply -f manifests/arango-storage-dev.yaml
# To use `ArangoDeploymentReplication`, also run
kubectl apply -f manifests/arango-deployment-replication-dev.yaml