forked from maistra/istio-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maistra_v1_servicemeshcontrolplane_cr_auth.yaml
70 lines (60 loc) · 2.1 KB
/
maistra_v1_servicemeshcontrolplane_cr_auth.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
apiVersion: maistra.io/v1
kind: ServiceMeshControlPlane
metadata:
name: auth-install
spec:
# NOTE, if you remove all children from an element, you should remove the
# element too. An empty element is interpreted as null and will override all
# default values (i.e. no values will be specified for that element, not even
# the defaults baked into the chart values.yaml).
# For a complete list of all options, see the docs at https://maistra-1-2.maistra.io/docs/installation/installation-options/
istio:
global:
# the following lines enable tls across the control and data planes
controlPlaneSecurityEnabled: true
mtls:
enabled: true
gateways:
istio-egressgateway:
# disable autoscaling for use in smaller environments
autoscaleEnabled: false
istio-ingressgateway:
# disable autoscaling for use in smaller environments
autoscaleEnabled: false
# enable integration between Istio Gateways and OpenShift Routes
ior_enabled: false
mixer:
policy:
# disable autoscaling for use in smaller environments
autoscaleEnabled: false
telemetry:
# disable autoscaling for use in smaller environments
autoscaleEnabled: false
pilot:
# disable autoscaling for use in smaller environments
autoscaleEnabled: false
# increase random sampling rate for development/testing
traceSampling: 100.0
kiali:
# change to false to disable kiali
enabled: true
tracing:
# change to false to disable tracing (i.e. jaeger)
enabled: true
jaeger:
# simple, all-in-one strategy
template: all-in-one
# production strategy, utilizing elasticsearch
#template: production-elasticsearch
# if required. only one instance may use agentStrategy=DaemonSet
#agentStrategy: DaemonSet
---
apiVersion: maistra.io/v1
kind: ServiceMeshMemberRoll
metadata:
name: default
spec:
members:
# a list of namespaces that should be joined into the service mesh
# for example, to add the bookinfo namespace
#- bookinfo