mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
Updated readme. Included deployment-replication manifest
This commit is contained in:
parent
38fea85078
commit
48060435f1
2 changed files with 9 additions and 5 deletions
13
README.md
13
README.md
|
@ -8,15 +8,14 @@ read the [tutorial](./docs/Manual/Tutorials/Kubernetes/README.md).
|
|||
|
||||
## State
|
||||
|
||||
The ArangoDB Kubernetes Operator is still in **heavy development**.
|
||||
The ArangoDB Kubernetes Operator is still in **development**.
|
||||
|
||||
Running ArangoDB deployments (single, active-failover or cluster)
|
||||
is becoming reasonably stable, but you should **not yet use it for production
|
||||
environments**.
|
||||
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, with the exeption of Datacenter to Datacenter replication
|
||||
support. That is still completely missing.
|
||||
it is intended to be.
|
||||
|
||||
[Documentation](./docs/README.md)
|
||||
|
||||
|
@ -27,6 +26,8 @@ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.2.1/
|
|||
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.2.1/manifests/arango-deployment.yaml
|
||||
# To use `ArangoLocalStorage`, also run
|
||||
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.2.1/manifests/arango-storage.yaml
|
||||
# To use `ArangoDeploymentReplication`, also run
|
||||
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/0.2.1/manifests/arango-deployment-replication.yaml
|
||||
```
|
||||
|
||||
## Building
|
||||
|
@ -37,4 +38,6 @@ 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
|
||||
# To use `ArangoDeploymentReplication`, also run
|
||||
kubectl apply -f manifests/arango-deployment-replication-dev.yaml
|
||||
```
|
||||
|
|
|
@ -13,4 +13,5 @@ fi
|
|||
f=README.md
|
||||
sed -e "s@^kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/.*/manifests/crd.yaml\$@kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/${VERSION}/manifests/crd.yaml@g" -i "" $f
|
||||
sed -e "s@^kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/.*/manifests/arango-deployment.yaml\$@kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/${VERSION}/manifests/arango-deployment.yaml@g" -i "" $f
|
||||
sed -e "s@^kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/.*/manifests/arango-deployment-replication.yaml\$@kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/${VERSION}/manifests/arango-deployment-replication.yaml@g" -i "" $f
|
||||
sed -e "s@^kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/.*/manifests/arango-storage.yaml\$@kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/${VERSION}/manifests/arango-storage.yaml@g" -i "" $f
|
||||
|
|
Loading…
Reference in a new issue