forked from aws/eks-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
84 lines (70 loc) · 2.2 KB
/
values.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Default values for appmesh-inject.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
region: ""
image:
repository: 602401143452.dkr.ecr.us-west-2.amazonaws.com/amazon/aws-app-mesh-inject
tag: v0.5.0
pullPolicy: IfNotPresent
sidecar:
image:
repository: 840364872350.dkr.ecr.us-west-2.amazonaws.com/aws-appmesh-envoy
tag: v1.15.1.0-prod
# sidecar.logLevel: Envoy log level can be info, warn, error or debug
logLevel: info
resources:
# sidecar.resources.requests: Envoy CPU and memory requests
requests:
cpu: 10m
memory: 32Mi
init:
image:
repository: 840364872350.dkr.ecr.us-west-2.amazonaws.com/aws-appmesh-proxy-route-manager
tag: v3-prod
nameOverride: ""
fullnameOverride: ""
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 100m
memory: 64Mi
nodeSelector: {}
tolerations: []
affinity: {}
podAnnotations: {}
serviceAccount:
# serviceAccount.create: Whether to create a service account or not
create: true
# serviceAccount.name: The name of the service account to create or use
name: ""
rbac:
# rbac.create: `true` if rbac resources should be created
create: true
# rbac.pspEnabled: `true` if PodSecurityPolicy resources should be created
pspEnabled: false
mesh:
# mesh.create: `true` if mesh resource should be created
create: false
# mesh.name: The name of the mesh to use
name: "global"
# mesh.discovery: The service discovery type to use, can be dns or cloudmap
discovery: dns
# mesh.egressFilter: The mesh Egress Filter, can be ALLOW_ALL or DROP_ALL
egressFilter: DROP_ALL
tracing:
# tracing.enabled: `true` if Envoy should be configured tracing
enabled: false
# tracing.provider: can be x-ray, jaeger or datadog
provider: x-ray
# tracing.address: Jaeger or Datadog agent server address (ignored for X-Ray)
address: appmesh-jaeger.appmesh-system
# tracing.address: Jaeger or Datadog agent server port (ignored for X-Ray)
port: 9411
stats:
# stats.tagsEnabled: `true` if Envoy should include app-mesh tags
tagsEnabled: false
# stats.statsdEnabled: `true` if Envoy should publish stats to statsd endpoint @ 127.0.0.1:8125
statsdEnabled: false