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-03-22 17:31:13 +01:00
.vscode File header template added 2018-02-09 11:14:03 +01:00
deps Merged in deployment-manifests changes 2018-03-12 16:21:24 +01:00
docs Update tls.md 2018-03-20 15:20:33 +01:00
examples Turn on TLS by default 2018-03-19 09:44:46 +01:00
manifests Updated manifest to 0.0.1 2018-03-20 11:26:17 +01:00
pkg Using refs in the spec as much as possible to detect unspecified fields 2018-03-22 17:31:13 +01:00
scripts Allow extra TESTOPTIONS 2018-03-19 15:02:12 +01:00
tests rename test function 2018-03-20 15:01:39 +01:00
tools Fixing release code wrt MANIFESTSUFFIX 2018-03-20 08:04:22 +01:00
.dockerignore Extending Spec object, moved vendor to deps for test support 2018-02-13 16:06:36 +01:00
.gitignore Initial API objects & vendoring 2018-02-09 11:11:33 +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 Rename repository to kube-arangodb 2018-03-13 16:25:33 +01:00
main.go Splitting operator in two parts 2018-03-19 11:09:20 +01:00
Makefile Fixing release code wrt MANIFESTSUFFIX 2018-03-20 08:04:22 +01:00
README.md Added release install block 2018-03-20 11:33:37 +01:00
storage.go Rename repository to kube-arangodb 2018-03-13 16:25:33 +01:00
VERSION Updated to 0.0.1+git 2018-03-20 11:26:30 +01:00

ArangoDB Kubernetes Operator

"Starter for Kubernetes"

State: In heavy development. DO NOT USE FOR ANY PRODUCTION LIKE PURPOSE! THINGS WILL CHANGE.

Installation of latest release

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