Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. apiVersion: maistra.io/v1
  2. kind: ServiceMeshControlPlane
  3. metadata:
  4. name: full-install
  5. spec:
  6. # NOTE, if you remove all children from an element, you should remove the
  7. # element too. An empty element is interpreted as null and will override all
  8. # default values (i.e. no values will be specified for that element, not even
  9. # the defaults baked into the chart values.yaml).
  10. istio:
  11. global:
  12. hub: quay.io/maistra
  13. tag: latest-qe
  14. proxy-init:
  15. image: proxy-init
  16. oauthproxy:
  17. hub: docker.io/openshift
  18. image: oauth-proxy
  19. tag: latest
  20. proxy:
  21. # constrain resources for use in smaller environments
  22. resources:
  23. requests:
  24. cpu: 100m
  25. memory: 128Mi
  26. limits:
  27. cpu: 500m
  28. memory: 128Mi
  29. gateways:
  30. istio-egressgateway:
  31. # disable autoscaling for use in smaller environments
  32. autoscaleEnabled: false
  33. istio-ingressgateway:
  34. # disable autoscaling for use in smaller environments
  35. autoscaleEnabled: false
  36. # set to true to enable IOR
  37. ior_enabled: false
  38.  
  39. mixer:
  40. policy:
  41. # disable autoscaling for use in smaller environments
  42. autoscaleEnabled: false
  43.  
  44. telemetry:
  45. # disable autoscaling for use in smaller environments
  46. autoscaleEnabled: false
  47. # constrain resources for use in smaller environments
  48. resources:
  49. requests:
  50. cpu: 100m
  51. memory: 1G
  52. limits:
  53. cpu: 500m
  54. memory: 4G
  55.  
  56. pilot:
  57. # disable autoscaling for use in smaller environments
  58. autoscaleEnabled: false
  59. # increase random sampling rate for development/testing
  60. traceSampling: 100.0
  61.  
  62. kiali:
  63. # change to false to disable kiali
  64. enabled: false
  65.  
  66. # create a secret for accessing kiali dashboard with the following credentials
  67. # dashboard:
  68. # user: admin
  69. # passphrase: admin
  70.  
  71. tracing:
  72. # change to false to disable tracing (i.e. jaeger)
  73. enabled: true
  74. jaeger:
  75. # simple, all-in-one strategy
  76. template: all-in-one
  77. hub: quay.io/maistra
  78. tag: 1.13.1
  79. # production strategy, utilizing elasticsearch
  80. #template: production-elasticsearch
  81. # if required. only one instance may use agentStrategy=DaemonSet
  82. #agentStrategy: DaemonSet
  83.  
  84. ---
  85.  
  86. apiVersion: maistra.io/v1
  87. kind: ServiceMeshMemberRoll
  88. metadata:
  89. name: default
  90. spec:
  91. members:
  92. # a list of namespaces that should be joined into the service mesh
  93. # for example, to add the bookinfo namespace
  94. #- bookinfo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement