...
1deploymentTool: getambassador.io
2podAnnotations:
3 consul.hashicorp.com/connect-inject: 'false'
4 sidecar.istio.io/inject: 'false'
5containerNameOverride: ambassador
6restartPolicy: Always
7terminationGracePeriodSeconds: "0"
8service:
9 type: LoadBalancer
10replicaCount: 3
11affinity:
12 podAntiAffinity:
13 preferredDuringSchedulingIgnoredDuringExecution:
14 - podAffinityTerm:
15 labelSelector:
16 matchLabels:
17 service: ambassador
18 topologyKey: kubernetes.io/hostname
19 weight: 100
20
21resources:
22 limits:
23 cpu: 1
24 memory: 400Mi
25 requests:
26 memory: 100Mi
27adminService:
28 type: NodePort
29image:
30 repository: "$imageRepo$"
31 tag: "$version$"
View as plain text