1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-15 17:51:03 +00:00
kube-arangodb/chart/arangodb-ingress-proxy
2023-02-20 14:30:42 +01:00
..
templates [Update] Replace beta.kubernetes.io/arch to kubernetes.io/arch in Operator Chart (#992) 2022-05-25 18:50:13 +02:00
Chart.yaml [Feature] Add TCP Ingress Chart (#564) 2020-05-18 10:37:10 +02:00
LICENSE [License] Update to 2022 (#883) 2022-01-10 12:35:49 +01:00
README.md [Feature] Add TCP Ingress Chart (#564) 2020-05-18 10:37:10 +02:00
values.yaml [Maintenance] Add & Enable YAML Linter (#1251) 2023-02-20 14:30:42 +01: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>