|
1 | 1 | # ArangoDB Kubernetes Operator |
2 | 2 |
|
3 | | -- [Tutorial](https://www.arangodb.com/docs/stable/tutorials-kubernetes.html) |
4 | | -- [Documentation](https://www.arangodb.com/docs/stable/deployment-kubernetes.html) |
5 | | -- [Architecture](./design/README.md) |
6 | | -- [Features description and usage](./features/README.md) |
7 | | -- [Custom Resources API Reference](./api/README.md) |
8 | | -- [Operator Metrics & Alerts](./generated/metrics/README.md) |
9 | | -- [Operator Actions](./generated/actions.md) |
| 3 | +- [Intro](#intro) |
| 4 | +- [Using the ArangoDB Kubernetes Operator](using-the-operator.md) |
| 5 | +- [Architecture overview](design/README.md) |
| 6 | +- [Features description and usage](features/README.md) |
| 7 | +- [Custom Resources API Reference](api/README.md) |
| 8 | +- [Operator Metrics & Alerts](generated/metrics/README.md) |
| 9 | +- [Operator Actions](generated/actions.md) |
| 10 | +- [Authentication](authentication.md) |
| 11 | +- Custom resources overview: |
| 12 | + - [ArangoDeployment](deployment-resource-reference.md) |
| 13 | + - [ArangoDeploymentReplication](deployment-replication-resource-reference.md) |
| 14 | + - [ArangoLocalStorage](storage-resource.md) |
| 15 | + - [Backup](backup-resource.md) |
| 16 | + - [BackupPolicy](backuppolicy-resource.md) |
| 17 | +- [Configuration and secrets](configuration-and-secrets.md) |
| 18 | +- [Configuring your driver for ArangoDB access](driver-configuration.md) |
| 19 | +- [Using Helm](helm.md) |
| 20 | +- [Collecting metrics](metrics.md) |
| 21 | +- [Services & Load balancer](services-and-load-balancer.md) |
| 22 | +- [Storage configuration](storage.md) |
| 23 | +- [Secure connections (TLS)](tls.md) |
| 24 | +- [Upgrading ArangoDB version](upgrading.md) |
| 25 | +- [Scaling your ArangoDB deployment](scaling.md) |
| 26 | +- [Draining the Kubernetes nodes](draining-nodes.md) |
10 | 27 | - Known issues (TBD) |
| 28 | +- [Troubleshooting](troubleshooting.md) |
11 | 29 | - [How-to ...](how-to/README.md) |
| 30 | + |
| 31 | +## Intro |
| 32 | + |
| 33 | +The ArangoDB Kubernetes Operator (`kube-arangodb`) is a set of operators |
| 34 | +that you deploy in your Kubernetes cluster to: |
| 35 | + |
| 36 | +- Manage deployments of the ArangoDB database |
| 37 | +- Manage backups |
| 38 | +- Provide `PersistentVolumes` on local storage of your nodes for optimal storage performance. |
| 39 | +- Configure ArangoDB Datacenter-to-Datacenter Replication |
| 40 | + |
| 41 | +Each of these uses involves a different custom resource. |
| 42 | + |
| 43 | +- Use an [`ArangoDeployment` resource](deployment-resource-reference.md) to |
| 44 | + create an ArangoDB database deployment. |
| 45 | +- Use an [`ArangoBackup`](backup-resource.md) and `ArangoBackupPolicy` resources to |
| 46 | + create ArangoDB backups. |
| 47 | +- Use an [`ArangoLocalStorage` resource](storage-resource.md) to |
| 48 | + provide local `PersistentVolumes` for optimal I/O performance. |
| 49 | +- Use an [`ArangoDeploymentReplication` resource](deployment-replication-resource-reference.md) to |
| 50 | + configure ArangoDB Datacenter-to-Datacenter Replication. |
| 51 | + |
| 52 | +Continue with [Using the ArangoDB Kubernetes Operator](using-the-operator.md) |
| 53 | +to learn how to install the ArangoDB Kubernetes operator and create |
| 54 | +your first deployment. |
| 55 | + |
| 56 | +For more information about the production readiness state, please refer to the |
| 57 | +[ArangoDB Kubernetes Operator repository](https://github.com/arangodb/kube-arangodb#production-readiness-state). |
0 commit comments