Skip to content

Update Istio resource requests #374

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

Merged
merged 2 commits into from
Aug 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
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
47 changes: 47 additions & 0 deletions manager/manifests/istio-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ gateways:
labels:
app: operator-istio-gateway
istio: operator-ingressgateway
replicaCount: 1
autoscaleMin: 1
autoscaleMax: 5
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 2000m
memory: 1024Mi
type: LoadBalancer
ports:
- port: 80
Expand Down Expand Up @@ -56,6 +66,16 @@ gateways:
labels:
app: apis-istio-gateway
istio: apis-ingressgateway
replicaCount: 1
autoscaleMin: 1
autoscaleMax: 5
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 2000m
memory: 1024Mi
type: LoadBalancer
ports:
- port: 80
Expand Down Expand Up @@ -97,6 +117,16 @@ mixer:
enabled: false
telemetry:
enabled: true
replicaCount: 1
autoscaleMin: 1
autoscaleMax: 5
resources:
requests:
cpu: 1000m
memory: 1G
limits:
cpu: 4800m
memory: 4G
env:
AWS_REGION: $CORTEX_REGION
LOG_GROUP_NAME: $CORTEX_LOG_GROUP
Expand All @@ -105,6 +135,13 @@ pilot:
image: $CORTEX_IMAGE_ISTIO_PILOT
enabled: true
sidecar: false
resources:
requests:
cpu: 150m
memory: 128Mi
limits:
cpu: 2000m
memory: 2048Mi

security:
image: $CORTEX_IMAGE_ISTIO_CITADEL
Expand All @@ -129,3 +166,13 @@ global:
proxy:
autoInject: disabled
image: $CORTEX_IMAGE_ISTIO_PROXY
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 2000m
memory: 1024Mi
defaultResources:
requests:
cpu: 10m
7 changes: 7 additions & 0 deletions manager/manifests/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ spec:
- name: operator
image: $CORTEX_IMAGE_OPERATOR
imagePullPolicy: Always
resources:
requests:
cpu: 200m
memory: 128Mi
limits:
cpu: 2000m
memory: 1024Mi
ports:
- containerPort: 8888
env:
Expand Down