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
Ewout Prangsma 0c825bece5
Merge pull request #127 from arangodb/vendor-update
Updated go-certificates & go-driver to latest versions
2018-04-27 12:54:43 +02:00
.vscode File header template added 2018-02-09 11:14:03 +01:00
deps Updated go-driver 2018-04-27 11:16:58 +02:00
docs Updated manual wrt externa-access 2018-04-20 13:30:53 +02:00
examples Removed test settings 2018-04-20 12:31:18 +02:00
manifests Added manifest for integration tests 2018-04-06 14:23:04 +02:00
pkg Updated generated code 2018-04-20 13:34:54 +02:00
scripts Added environment variable used to cleanup failed tests 2018-04-06 10:40:16 +02:00
tests Rename ResilientSingle to ActiveFailover 2018-04-11 08:49:40 +02:00
tools Merge branch 'master' into chaos 2018-04-03 14:55:37 +02:00
.dockerignore Extending Spec object, moved vendor to deps for test support 2018-02-13 16:06:36 +01:00
.gitignore Collecting logs in script 2018-04-05 09:58:42 +02:00
CHANGELOG.md Updated changelog for 0.1.0 2018-04-06 14:22:12 +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 environment variable used to cleanup failed tests 2018-04-06 10:40:16 +02:00
LICENSE Add LICENSE 2018-04-03 08:20:49 +02:00
main.go Improved liveness detection 2018-04-05 16:31:27 +02:00
Makefile Fix changelog building in release 2018-04-06 14:17:41 +02:00
README.md Rename ResilientSingle to ActiveFailover 2018-04-11 08:49:40 +02:00
storage.go Rename repository to kube-arangodb 2018-03-13 16:25:33 +01:00
VERSION Updated to 0.1.0+git 2018-04-06 14:22:19 +02:00

ArangoDB Kubernetes Operator

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 heavy development.

Running ArangoDB deployments (single, active-failover or cluster) is becoming reasonably stable, but you should not yet use it for production environments.

The feature set of the ArangoDB Kubernetes Operator is close to what it is intended to be, with the exeption of Datacenter to Datacenter replication support. That is still completely missing.

Documentation

Installation of latest release

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

Building

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