| 1234567891011121314151617181920212223242526272829303132333435363738394041 | apiVersion: v1kind: Servicemetadata:  name: fortio  labels:    app: fortiospec:  ports:  - port: 8080    name: http  selector:    app: fortio---apiVersion: apps/v1kind: Deploymentmetadata:  name: fortio-deployspec:  replicas: 1  selector:    matchLabels:      app: fortio  template:    metadata:      annotations:        # This annotation causes Envoy to serve cluster.outbound statistics via 15000/stats        # in addition to the stats normally served by Istio.  The Circuit Breaking example task        # gives an example of inspecting Envoy stats.        sidecar.istio.io/statsInclusionPrefixes: cluster.outbound,cluster_manager,listener_manager,http_mixer_filter,tcp_mixer_filter,server,cluster.xds-grpc      labels:        app: fortio    spec:      containers:      - name: fortio        image: fortio/fortio:latest_release        imagePullPolicy: Always        ports:        - containerPort: 8080          name: http-fortio        - containerPort: 8079          name: grpc-ping
 |