Last active
December 20, 2018 23:21
-
-
Save SaifRehman/1f3dc4769fdc59e80891318101262a6a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: networking.istio.io/v1alpha3 | |
kind: DestinationRule | |
metadata: | |
name: bookingsvc | |
spec: | |
host: bookingsvc | |
trafficPolicy: | |
connectionPool: | |
tcp: | |
maxConnections: 1000 | |
http: | |
http1MaxPendingRequests: 100 | |
maxRequestsPerConnection: 200 | |
outlierDetection: | |
consecutiveErrors: 3 | |
interval: 1s | |
baseEjectionTime: 3m | |
maxEjectionPercent: 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment