mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-08 06:46:02 +02:00
* Added an example of how to protect Grafana with Pomerium inside of an Istio mesh * Added relevant documentation links
30 lines
615 B
YAML
30 lines
615 B
YAML
apiVersion: networking.istio.io/v1beta1
|
|
kind: VirtualService
|
|
metadata:
|
|
name: grafana-virtual-service
|
|
namespace: pomerium
|
|
spec:
|
|
gateways:
|
|
- istio-system/internal-gateway
|
|
hosts:
|
|
- grafana.yourcompany.com
|
|
http:
|
|
- route:
|
|
- destination:
|
|
host: pomerium-proxy
|
|
---
|
|
apiVersion: networking.istio.io/v1beta1
|
|
kind: VirtualService
|
|
metadata:
|
|
name: authenticate-virtual-service
|
|
namespace: pomerium
|
|
spec:
|
|
gateways:
|
|
- istio-system/internal-gateway
|
|
hosts:
|
|
- authenticate.yourcompany.com
|
|
http:
|
|
- route:
|
|
- destination:
|
|
host: pomerium-authenticate
|
|
---
|