forked from scality/zenko-cosbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
85 lines (72 loc) · 1.69 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
85
## Define serviceAccount names for components. Defaults to component's fully
## qualified name.
##
serviceAccounts:
controller:
create: true
name:
driver:
create: true
name:
# ------------------------------------------------------------------------------
# Controller:
# ------------------------------------------------------------------------------
controller:
## controller container image
##
image:
repository: zenko/zenko-cosbench
tag: 0.0.6
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 19088
ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts: []
# - cosbench.local
tls: []
# - secretName: cosbench-tls
# hosts:
# - cosbench.local
logLevel: DEBUG
# ------------------------------------------------------------------------------
# Driver:
# ------------------------------------------------------------------------------
driver:
replicaCount: 1
## driver container image
##
image:
repository: zenko/zenko-cosbench
tag: 0.0.6
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 18088
## driver log level
##
logLevel: DEBUG
## Pod anitAffinity ["soft", "hard"]
##
antiAffinity: soft
antiAffinityWeight: 5
## hostAliases allow the modification of the hosts file inside a container
##
hostAliases: []
# - ip: "127.0.0.1"
# hostnames:
# - "cosbench.local"
## driver resource requests and limits
## Ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources:
requests:
cpu: 500m
memory: 2Gi
limits:
cpu: 1
memory: 4Gi