forked from ververica/ververica-platform-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues-vvp.yaml
59 lines (52 loc) · 1.67 KB
/
values-vvp.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
vvp:
### Configure VVP to use a local SQLite database
persistence:
type: local
### Configure Minio for Universal Blob Storage
blobStorage:
baseUri: s3://vvp
s3:
endpoint: http://minio.vvp.svc:9000
### Configure some global defaults for Deployments in this instance of Ververica Platform
globalDeploymentDefaults: |
spec:
state: RUNNING
template:
spec:
resources:
jobmanager:
cpu: 0.5
memory: 1G
taskmanager:
cpu: 0.5
memory: 1G
flinkConfiguration:
state.backend: filesystem
taskmanager.memory.managed.fraction: 0.0 # no managed memory needed for filesystem statebackend
high-availability: vvp-kubernetes
metrics.reporter.prom.class: org.apache.flink.metrics.prometheus.PrometheusReporter
execution.checkpointing.interval: 10s
execution.checkpointing.externalized-checkpoint-retention: RETAIN_ON_CANCELLATION
### Decrease the JobGraph translation thread pool size. This reduces our worst-case memory
### requirements by reducing the number of translations that can happen in parallel.
###
### See also: https://docs.ververica.com/platform_operations/advanced/sql.html
sqlService:
pool:
coreSize: 1
maxSize: 1
blobStorageCredentials:
s3:
accessKeyId: admin
secretAccessKey: password
### Allow Ververica Platform to manage Apache Flink deployments in "vvp-jobs" namespace
rbac:
additionalNamespaces:
- vvp-jobs
### Reduce gateway container memory requests.
gateway:
resources:
limits:
memory: 1Gi
requests:
memory: 1Gi