-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
55 lines (50 loc) · 946 Bytes
/
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
# values.yaml
global:
environment: production
indexerProxy:
replicaCount: 2
image:
repository: your-repo/indexer-proxy
tag: latest
service:
type: ClusterIP
port: 80
coordinator:
replicaCount: 1
image:
repository: your-repo/coordinator
tag: latest
service:
type: ClusterIP
port: 8000
logLevel: "info"
disableManagedProjects: true # Tambahkan ini
showStdoutInAdminUI: false # Tambahkan ini
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 250m
memory: 256Mi
ipfs:
replicaCount: 1
image:
repository: ipfs/go-ipfs
tag: v0.9.1
service:
type: ClusterIP
port: 5001
persistence:
enabled: true
size: 10Gi
ingress:
enabled: true
className: "nginx"
annotations:
nginx.ingress.kubernetes.io/ssl-redirect: "false"
hosts:
- host: subquery.example.com
paths:
- path: /
pathType: Prefix