File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
docs/Manual/Programs/kube-arangodb Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 11# ArangoDB operator user manual
22
33- [ Using the operator] ( ./usage.md )
4- - [ Custom resource ] ( ./custom_resource .md )
4+ - [ Deployment Resource ] ( ./deployment_resource .md )
55- [ ArangoDB configuration & secrets] ( ./config_and_secrets.md )
66- [ Metrics] ( ./metrics.md )
77- [ Scaling] ( ./scaling.md )
Original file line number Diff line number Diff line change 1- # Custom Resource
1+ # ArangoLocalStorage Custom Resource
22
3- The ArangoDB operator creates and maintains ArangoDB deployments
4- in a Kubernetes cluster, given a cluster specification.
5- This cluster specification is a CustomResource following
6- a CustomResourceDefinition created by the operator.
3+ The ArangoDB Deployment operator creates and maintains ArangoDB deployments
4+ in a Kubernetes cluster, given a deployment specification.
5+ This deployment specification is a ` CustomResource ` following
6+ a ` CustomResourceDefinition ` created by the operator.
77
8- Example minimal cluster definition:
8+ Example minimal deployment definition of an ArangoDB database cluster :
99
1010``` yaml
1111apiVersion : " database.arangodb.com/v1alpha"
1616 mode : cluster
1717` ` `
1818
19- Example more elaborate cluster definition:
19+ Example more elaborate deployment definition:
2020
2121` ` ` yaml
2222apiVersion : " database.arangodb.com/v1alpha"
4141 storageClassName : ssd
4242 coordinators :
4343 count : 3
44- image : " arangodb/arangodb:3.3.3 "
44+ image : " arangodb/arangodb:3.3.4 "
4545` ` `
4646
4747## Specification reference
Original file line number Diff line number Diff line change 22
33The ArangoDB Storage operator creates and maintains ArangoDB
44storage resources in a Kubernetes cluster, given a storage specification.
5- This storage specification is a CustomResource following
6- a CustomResourceDefinition created by the operator.
5+ This storage specification is a ` CustomResource ` following
6+ a ` CustomResourceDefinition ` created by the operator.
77
88Example minimal storage definition:
99
You can’t perform that action at this time.
0 commit comments