forked from secureCodeBox/secureCodeBox-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
48 lines (43 loc) · 1.28 KB
/
values.yaml
File metadata and controls
48 lines (43 loc) · 1.28 KB
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
# Default values for operator.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
image:
registry: docker.io
repository: scbexperimental/operator
tag: latest
digest: null
pullPolicy: Always
lurcher:
image:
registry: docker.io
repository: scbexperimental/lurcher
tag: null
digest: "sha256:0e9f18f85809fb8c042543657d340949db14e81fc727bf9fab4421befd317850"
pullPolicy: IfNotPresent
minio:
enabled: true
defaultBucket:
enabled: true
name: "securecodebox"
# Config for external s3 systems
# enable this and disable minio if you want to directly connect agains AWS S3, Google Cloud Storage, DigitalOcean Spaces etc.
s3:
enabled: false
endpoint: "fra1.digitaloceanspaces.com"
bucket: "my-bucket"
# Implicit 443. You probably only need to change this when the system uses a non default port
port: null
# Name to a k8s secret with 'accesskey' and 'secretkey' as attributes in the same namespace as this release
# Example creation via kubectl:
# kubectl create secret generic my-secret --from-literal=accessKey="******" --from-literal=secretKey="******"
keySecret: my-secret
#
# Config for the operator ressource limits
#
resources:
limits:
cpu: 100m
memory: 30Mi
requests:
cpu: 100m
memory: 20Mi