Skip to content

Commit

Permalink
Update nginx-ingress.md (#798)
Browse files Browse the repository at this point in the history
Updated Ingress Rules
  • Loading branch information
macevil authored Sep 1, 2021
1 parent bd6d160 commit 7bbd6df
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions docs/nginx-ingress.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,12 @@ spec:
http:
paths:
- path: /
pathType: Prefix
backend:
serviceName: minio
servicePort: 443
service:
name: minio
port:
number: 443
```
To enable Ingress route for the Tenant Console, we'll need to create a new Ingress rule. Note that this would require a separate TLS certificate with relevant domain and a secret with this TLS certificate as well (`nginx-tls-console` in below example).
Expand Down Expand Up @@ -103,7 +106,10 @@ spec:
http:
paths:
- path: /
pathType: Prefix
backend:
serviceName: minio-console
servicePort: 9443
service:
name: api-mgmt-console
port:
number: 9443
```

0 comments on commit 7bbd6df

Please sign in to comment.