1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
kube-arangodb/chart/arangodb-ingress-proxy/README.md

20 lines
626 B
Markdown
Raw Normal View History

2020-05-18 08:37:10 +00:00
# Introduction
Kubernetes ArangoDB Ingress for custom certificates.
ArangoDB supports more than only HTTP protocol, so simple Ingress is not enough.
## Before
Before Ingress proxy will be installed certificate secret needs to be created:
```
kubectl -n <deployment namespace> create secret tls <secret name> --cert <path to cert> --key <path to key>
```
## Installation
To install Ingress:
```
helm install --name <my ingress name> --namespace <deployment namespace> <path to kube-arangodb repository>/chart/arangodb-ingress-proxy --set replicas=2 --set tls=TLS Secret name> --set deployment=<ArangoDeployment name>
```