blob: f2f33e63beee6f881fa583c690ffeb68be13e65c [file] [log] [blame]
# Set up a Service associated with our proxy, which will run as 1.1.1.1 IP
apiVersion: networking.istio.io/v1alpha3
kind: ServiceEntry
metadata:
name: proxy-service-instance
spec:
hosts:
- example.com
ports:
- number: 80
name: http
protocol: HTTP
- number: 7070
name: tcp
protocol: TCP
- number: 443
name: https
protocol: HTTPS
- number: 9090
name: auto
protocol: ""
resolution: STATIC
endpoints:
- address: 1.1.1.1
---
apiVersion: security.istio.io/v1beta1
kind: PeerAuthentication
metadata:
name: default
spec:
mtls:
mode: STRICT
---
apiVersion: networking.istio.io/v1alpha3
kind: DestinationRule
metadata:
name: use-mtls
spec:
host: "*.host.example"
trafficPolicy:
tls:
mode: ISTIO_MUTUAL
---
# Set up .Services number of services. Each will have 4 ports (one for each protocol)
{{- range $i := until .Services }}
apiVersion: networking.istio.io/v1alpha3
kind: ServiceEntry
metadata:
name: service-{{$i}}
spec:
hosts:
- random-{{$i}}.host.example
ports:
- number: 80
name: http
protocol: HTTP
- number: 7070
name: tcp
protocol: TCP
- number: 443
name: https
protocol: HTTPS
- number: 9090
name: auto
resolution: STATIC
endpoints:
- address: 1.2.3.4
---
{{- end }}