Giter VIP home page Giter VIP logo

kofre / kube-arangodb Goto Github PK

View Code? Open in Web Editor NEW

This project forked from arangodb/kube-arangodb

0.0 1.0 0.0 31.17 MB

ArangoDB Kubernetes Operator - Start ArangoDB on Kubernetes in 5min

Home Page: https://docs.arangodb.com/devel/Manual/Tutorials/Kubernetes/

License: Apache License 2.0

Dockerfile 0.01% Groovy 0.18% HTML 0.04% JavaScript 1.37% CSS 0.01% Go 96.76% Shell 1.29% Makefile 0.34%

kube-arangodb's Introduction

ArangoDB Kubernetes Operator

Docker Pulls

ArangoDB Kubernetes Operator helps to 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

Beginning with Version 0.3.11 we maintain a production readiness state for individual new features, since we expect that new features will first be released with an "alpha" or "beta" readiness state and over time move to full "production readiness".

The following table has the general readiness state, the table below covers individual newer features separately.

Platform Kubernetes version ArangoDB version ArangoDB K8s Operator 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
IBM Cloud 1.11 >= 3.4.5 >= 0.3.11 Runs Yes
IBM Cloud 1.12 >= 3.4.5 >= 0.3.11 Runs Yes
IBM Cloud 1.13 >= 3.4.6.1 >= 0.3.11 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 Yes
Bare metal (kubeadm) 1.11 >= 3.3.13 Runs Yes
Bare metal (kubeadm) 1.12 >= 3.3.13 Runs In progress
Bare metal (kubeadm) 1.13 >= 3.3.13 Runs Yes
Bare metal (kubeadm) 1.14 >= 3.3.13 Runs In progress
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

Feature-wise production readiness table:

Feature ArangoDB K8s Operator Version Production Readiness Remarks
Pod Disruption Budgets 0.3.10 new - alpha
0.3.11 beta
Volume Resizing 0.3.10 new - beta
0.3.11 beta
Disabling of liveness probes 0.3.10 new - beta
0.3.11 production ready
Volume Claim Templates 0.3.11 new - alpha
Prometheus Metrics export 0.3.11 new - alpha needs Prometheus
User sidecar containers 0.3.11 new - alpha

Installation of latest release using Kubectl

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

This procedure can also be used for upgrades and will not harm any running ArangoDB deployments.

Installation of latest release using Helm

Only use this procedure for a new install of the operator. See below for upgrades.

# The following will install the custom resources required by the operators.
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.12/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.12/kube-arangodb.tgz
# To use `ArangoLocalStorage`, also run
helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.12/kube-arangodb-storage.tgz

Upgrading the operator using Helm

To upgrade the operator to the latest version with Helm, you have to delete the previous deployment and then install the latest. HOWEVER: You must not delete the deployment of the custom resource definitions (CRDs), or your ArangoDB deployments will be deleted!

Therefore, you have to use helm list to find the deployments for the operator (kube-arangodb) and of the storage operator (kube-arangodb-storage) and use helm delete to delete them using the automatically generated deployment names. Here is an example of a helm list output:

% helm list
NAME            	REVISION	UPDATED                 	STATUS  	CHART                               	APP VERSION	NAMESPACE
intent-camel    	1       	Mon Apr  8 11:37:52 2019	DEPLOYED	kube-arangodb-storage-0.3.10-preview	           	default  
steely-mule     	1       	Sun Mar 31 21:11:07 2019	DEPLOYED	kube-arangodb-crd-0.3.9             	           	default  
vetoed-ladybird 	1       	Mon Apr  8 11:36:58 2019	DEPLOYED	kube-arangodb-0.3.10-preview        	           	default  

So here, you would have to do

helm delete intent-camel
helm delete vetoed-ladybird

but not delete steely-mule. Then you could install the new version with helm install as normal:

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

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

kube-arangodb's People

Contributors

ewoutp avatar maierlars avatar neunhoef avatar obiwahn avatar kvahed avatar sleto-it avatar simran-b avatar joerg84 avatar maxkernbach avatar lservini avatar dhly-etc avatar hugheym avatar janavolkova9 avatar moorara avatar oknoah avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.