31 lines
462 B
Markdown
31 lines
462 B
Markdown
# Linkerd Ingress Operator
|
|
|
|
The Linkerd Ingress is an addon operator to annotate ingress's providing the mTLS destnation headers.
|
|
|
|
Currently only the nginx ingress controller is supported.
|
|
|
|
## Install
|
|
|
|
Grant permissions for the new operator:
|
|
|
|
```
|
|
kubectl apply -f rbac.yaml
|
|
```
|
|
|
|
Create the operator pod:
|
|
|
|
```
|
|
kubectl apply -f pod.yaml
|
|
```
|
|
|
|
## Cleanup
|
|
|
|
```
|
|
kubectl delete -f pod.yaml
|
|
kubectl delete -f rbac.yaml
|
|
```
|
|
|
|
## Todo
|
|
|
|
+ cleanup
|
|
* more ingress controllers
|