forked from deliveryhero/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
55 lines (49 loc) · 1.59 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
# nameOverride -- Set it in case you want to override the name of the deployment. By default it is set to `.Chart.Name`
nameOverride: ""
# labels -- Any extra label to apply to all resources
labels: {}
# replicaCount -- Set the number of replicas in case hpa is not enabled
replicaCount: 1
hpa:
enabled: false
minReplicas: 1
maxReplicas: 100
# hpa.targetUtilizationPercentage -- Set it to false in case you don't want to scale by cpu consumption
targetCPUUtilizationPercentage: 80
# hpa.targetMemoryUtilizationPercentage -- Set it to false in case you don't want to scale by memory consumption
targetMemoryUtilizationPercentage: false
resources: {}
mock:
imposters:
# mock.imposters.configmap -- The name of the configmap containing all your imposters
configmap: example-imposters
# mock.imposters.path -- The mounting path for your imposters folder
path: /imposters
schemas:
# mock.schemas.configmap -- The name of the configmap containing your schemas' folder.
configmap: example-schemas
# mock.schemas.path -- The mounting path for your schemas folder
path: /schemas
killgrave:
# mock.killgrave.tag -- The image tag to use
tag: "0.4.1"
# mock.killgrave.secure -- If killgrave server must be configured to run using TSL
secure: false
affinity: {}
tolerations: []
nodeSelector: {}
ingress:
enabled: false
className: ""
hosts: []
# - host: http-mock-example.local
# pathType: ImplementationSpecific
# paths:
# - path: /
tls: []
# - hosts: []
# secretName: chart-example-tsl
annotations: {}
service:
type: NodePort
port: 8080