Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set the same resources for egress and ingress #1198

Merged
merged 2 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/user/00-15-overview-istio-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The configuration of Istio resources depends on the cluster capabilities. If you
|-----------------|--------------|------------|-----------------|---------------|
| Proxy | 10 m | 250 m | 32 Mi | 254 Mi |
| Ingress Gateway | 10 m | 1000 m | 32 Mi | 1024 Mi |
| Egress Gateway | 10 m | 1000 m | 128 Mi | 1024 Mi |
| Egress Gateway | 10 m | 1000 m | 32 Mi | 1024 Mi |
| Pilot | 50 m | 1000 m | 128 Mi | 1024 Mi |
| CNI | 10 m | 250 m | 128 Mi | 384 Mi |

Expand All @@ -33,7 +33,7 @@ The configuration of Istio resources depends on the cluster capabilities. If you
|-----------------|--------------|------------|-----------------|---------------|
| Proxy | 10 m | 1000 m | 192 Mi | 1024 Mi |
| Ingress Gateway | 10 m | 1000 m | 32 Mi | 1024 Mi |
| Egress Gateway | 10 m | 2000 m | 128 Mi | 1024 Mi |
| Egress Gateway | 10 m | 1000 m | 32 Mi | 1024 Mi |
| Pilot | 100 m | 4000 m | 512 Mi | 2 Gi |
| CNI | 100 m | 500 m | 512 Mi | 1024 Mi |

Expand Down
2 changes: 1 addition & 1 deletion internal/istiooperator/istio-operator-light.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
memory: 1024Mi
requests:
cpu: 10m
memory: 128Mi
memory: 32Mi
name: istio-egressgateway
ingressGateways:
- enabled: true
Expand Down
4 changes: 2 additions & 2 deletions internal/istiooperator/istio-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ spec:
weight: 100
resources:
limits:
cpu: 2000m
cpu: 1000m
werdes72 marked this conversation as resolved.
Show resolved Hide resolved
memory: 1024Mi
requests:
cpu: 10m
werdes72 marked this conversation as resolved.
Show resolved Hide resolved
memory: 128Mi
memory: 32Mi
werdes72 marked this conversation as resolved.
Show resolved Hide resolved
hpaSpec:
maxReplicas: 10
scaleTargetRef:
Expand Down
Loading