Skip to content

Commit cf52b20

Browse files
committed
single instance value configs
1 parent 9a4ed2d commit cf52b20

File tree

2 files changed

+104
-0
lines changed

2 files changed

+104
-0
lines changed

values/large.yaml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Resources allocated to BindPlane OP Server. For more information
2+
# see https://observiq.com/docs/advanced-setup/installation/prerequisites.
3+
resources:
4+
requests:
5+
memory: 16Gi
6+
cpu: 4
7+
limits:
8+
memory: 16Gi
9+
cpu: 4
10+
11+
# Single instance BindPlane operates as a StatefulSet with a
12+
# persistent volume.
13+
backend:
14+
type: bbolt
15+
16+
bbolt:
17+
volumeSize: 120Gi
18+
# Set the storage class to use for the volume. If not set,
19+
# the default storage class will be used. If possible, this
20+
# should be set to an SSD backed storage class.
21+
# storageClass:
22+
23+
# Prometheus is deployed as a StatefulSet with a persistent volume.
24+
prometheus:
25+
resources:
26+
requests:
27+
memory: 8Gi
28+
cpu: 2
29+
limits:
30+
memory: 8Gi
31+
cpu: 2
32+
storage:
33+
volumeSize: 120Gi
34+
# Set the storage class to use for the volume. If not set,
35+
# the default storage class will be used. If possible, this
36+
# should be set to an SSD backed storage class.
37+
# storageClass:
38+
39+
auth:
40+
type: system
41+
42+
config:
43+
# If you have a BindPlane license, set it here.
44+
# license:
45+
accept_eula: true
46+
# kubectl -n <namesapce> create secret generic <name> \
47+
# --from-literal=username=myuser \
48+
# --from-literal=password=mypassword \
49+
# --from-literal=secret_key=353753ca-ae48-40f9-9588-28cf86430910 \
50+
# --from-literal=sessions_secret=d9425db6-c4ee-4769-9c1f-a66987679e90
51+
# -- Name of the Kubernetes secret which contains the `username`, `password`, `secret_key`, and `sessions_secret` configuration options.
52+
secret: bindplane

values/small.yaml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Resources allocated to BindPlane OP Server. For more information
2+
# see https://observiq.com/docs/advanced-setup/installation/prerequisites.
3+
resources:
4+
requests:
5+
memory: 4Gi
6+
cpu: 2
7+
limits:
8+
memory: 4Gi
9+
cpu: 2
10+
11+
# Single instance BindPlane operates as a StatefulSet with a
12+
# persistent volume.
13+
backend:
14+
type: bbolt
15+
16+
bbolt:
17+
volumeSize: 120Gi
18+
# Set the storage class to use for the volume. If not set,
19+
# the default storage class will be used. If possible, this
20+
# should be set to an SSD backed storage class.
21+
# storageClass:
22+
23+
# Prometheus is deployed as a StatefulSet with a persistent volume.
24+
prometheus:
25+
resources:
26+
requests:
27+
memory: 2Gi
28+
cpu: 1
29+
limits:
30+
memory: 2Gi
31+
cpu: 1
32+
storage:
33+
volumeSize: 120Gi
34+
# Set the storage class to use for the volume. If not set,
35+
# the default storage class will be used. If possible, this
36+
# should be set to an SSD backed storage class.
37+
# storageClass:
38+
39+
auth:
40+
type: system
41+
42+
config:
43+
# If you have a BindPlane license, set it here.
44+
# license:
45+
accept_eula: true
46+
# kubectl -n <namesapce> create secret generic <name> \
47+
# --from-literal=username=myuser \
48+
# --from-literal=password=mypassword \
49+
# --from-literal=secret_key=353753ca-ae48-40f9-9588-28cf86430910 \
50+
# --from-literal=sessions_secret=d9425db6-c4ee-4769-9c1f-a66987679e90
51+
# -- Name of the Kubernetes secret which contains the `username`, `password`, `secret_key`, and `sessions_secret` configuration options.
52+
secret: bindplane

0 commit comments

Comments
 (0)