Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions docs/content/tutorials/nginx-ingress-linkerd.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,31 @@ NAME READY STATUS RESTARTS AGE
httpbin-66df5bfbc9-ffhdp 2/2 Running 0 67s
```

Next, we are going to create `virtualserver` resource for the NGINX Ingress controller.

```yaml
apiVersion: k8s.nginx.org/v1
kind: VirtualServer
metadata:
name: httpbin
namespace: httpbin
spec:
host: httpbin.example.com
tls:
secret: httpbin-secret
upstreams:
- name: httpbin
service: httpbin
port: 14001
use-cluster-ip: true
routes:
- path: /
action:
pass: httpbin
```

The `use-cluster-ip` is required when using the Linkerd sidecar proxy.

We can now start sending traffic to NGINX Ingress Controller, to verify that `Linkerd` is handling the sidecar traffic connections.

```bash
Expand Down