Skip to content

Commit 5cea9ba

Browse files
pontiac88Sanzhar Mazhitov
andauthored
chore: request limit init (#64)
Co-authored-by: Sanzhar Mazhitov <[email protected]>
1 parent d08b6b2 commit 5cea9ba

File tree

7 files changed

+58
-7
lines changed

7 files changed

+58
-7
lines changed

kustomize/base/deployment.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,6 @@ spec:
3131
secretKeyRef:
3232
name: fluence-network-exporter-secrets
3333
key: rpc_url
34-
resources:
35-
requests:
36-
cpu: 50m
37-
memory: 128Mi
38-
limits:
39-
memory: 256Mi
4034
volumeMounts:
4135
- name: config
4236
mountPath: /config
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: fluence-network-exporter
5+
spec:
6+
template:
7+
spec:
8+
containers:
9+
- name: fluence-network-exporter
10+
resources:
11+
requests:
12+
cpu: "50m"
13+
memory: "192Mi"
14+
limits:
15+
cpu: "50m"
16+
memory: "256Mi"

kustomize/overlays/mainnet/kustomization.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ configMapGenerator:
1616

1717
generatorOptions:
1818
disableNameSuffixHash: true
19+
20+
patches:
21+
- path: deployment.yml
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: fluence-network-exporter
5+
spec:
6+
template:
7+
spec:
8+
containers:
9+
- name: fluence-network-exporter
10+
resources:
11+
requests:
12+
cpu: "50m"
13+
memory: "128Mi"
14+
limits:
15+
cpu: "50m"
16+
memory: "160Mi"

kustomize/overlays/stage/kustomization.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,7 @@ generatorOptions:
2020
images:
2121
- name: fluence/fluence-network-exporter
2222
newName: docker.fluence.dev/fluence-network-exporter
23-
newTag: main-f1fcf62-34-1
23+
newTag: main-f1fcf62-34-1
24+
25+
patches:
26+
- path: deployment.yml
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: fluence-network-exporter
5+
spec:
6+
template:
7+
spec:
8+
containers:
9+
- name: fluence-network-exporter
10+
resources:
11+
requests:
12+
cpu: "50m"
13+
memory: "128Mi"
14+
limits:
15+
cpu: "50m"
16+
memory: "160Mi"

kustomize/overlays/testnet/kustomization.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ configMapGenerator:
1616

1717
generatorOptions:
1818
disableNameSuffixHash: true
19+
20+
patches:
21+
- path: deployment.yml

0 commit comments

Comments
 (0)