forked from aws/eks-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
70 lines (57 loc) · 1.76 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
# Default values for appmesh-gateway.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
nameOverride: ""
fullnameOverride: ""
image:
repository: 840364872350.dkr.ecr.us-west-2.amazonaws.com/aws-appmesh-envoy
tag: v1.15.1.0-prod
pullPolicy: IfNotPresent
# skipImageOverride: when enabled the App Mesh injector will not override the Envoy image
skipImageOverride: false
service:
type: LoadBalancer
port: 80
# externalTrafficPolicy: when set to Local it preserves the client source IP
externalTrafficPolicy: Cluster
# annotations: NLB as default load balancer type
annotations:
service.beta.kubernetes.io/aws-load-balancer-type: nlb
appmesh:
# appmesh.gateway: Whether to create a VirtualGateway or not
gateway: true
# appmesh.preview: Whether to enable App Mesh Preview (us-west-2 only) or not
preview: false
# resources: requests are set by default to enable HPA
resources:
# limits:
# cpu: 2000m
# memory: 1Gi
requests:
cpu: 100m
memory: 64Mi
# hpa: CPU based auto-scaling
hpa:
enabled: false
minReplicas: 2
maxReplicas: 5
# CPU average utilization percentage
averageUtilization: 90
# podAntiAffinity: the scheduler should prefer to not schedule
# two replica pods onto the same node but no guarantee is provided.
podAntiAffinity:
enabled: true
# affinity: node/pod affinity (disable podAntiAffinity to use this)
affinity: {}
nodeSelector: {}
tolerations: []
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: ""
annotations: {}
rbac:
# rbac.pspEnabled: `true` if PodSecurityPolicy resources should be created
pspEnabled: false