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
2018-11-06 10:53:09 +01:00
.vscode File header template added 2018-02-09 11:14:03 +01:00
dashboard Updated node modules to fix vulnerabilities 2018-10-30 07:59:41 +01:00
deps Fixed PV creation on kubernetes 1.11 2018-08-27 12:09:33 +02:00
docs Merge pull request #289 from arangodb/documentation/amazon-eks 2018-11-02 12:06:17 +01:00
examples adding AKS tutorial 2018-10-31 15:33:18 +01:00
manifests Updated manifest to 0.3.3 2018-11-02 21:17:54 +01:00
pkg Merge pull request #288 from arangodb/bug-fix/scaling-removing-wrong-nodes 2018-11-02 13:35:52 +01:00
scripts Merge pull request #287 from arangodb/bug-fix/extra-crd-yaml 2018-10-31 17:19:54 +01:00
tests Add disableIPv6 switch and try to fix auth for test7a 2018-11-06 10:53:09 +01:00
tools Disarm automatic changelog generation for now. 2018-11-02 15:23:19 +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 Update changelog manually. 2018-11-02 21:16:10 +01: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 test option for default arangodb docker image. 2018-10-19 14:47:44 +02: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 Alpine & status fixes 2018-07-06 14:22:25 +02:00
MAINTAINERS.md Added MAINTAINERS doc 2018-09-07 12:07:26 +02:00
Makefile Merge pull request #287 from arangodb/bug-fix/extra-crd-yaml 2018-10-31 17:19:54 +01:00
README.md Updated manifest to 0.3.3 2018-11-02 21:17:54 +01:00
storage.go Rename repository to kube-arangodb 2018-03-13 16:25:33 +01:00
VERSION Updated to 0.3.3+git 2018-11-02 21:18:13 +01: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
Amazon EKS 1.10 >= 3.3.13 Runs No
Amazon & Kops 1.10 >= 3.3.13 Runs No
Azure AKS 1.10 >= 3.3.13 ? No
OpenShift 1.10 >= 3.3.13 Runs No
Pivotal PKS 1.10 >= 3.3.13 ? No
Scaleway Kubernetes 1.10 >= 3.3.13 ? 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

Installation of latest release using Helm

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

Installation of latest release using Kubectl

kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.3/manifests/arango-crd.yaml
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.3/manifests/arango-deployment.yaml
# To use `ArangoLocalStorage`, also run
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.3/manifests/arango-storage.yaml
# To use `ArangoDeploymentReplication`, also run
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.3.3/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