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

updated with resource requests and limits #739

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
8 changes: 7 additions & 1 deletion charts/dataingestion-service/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,13 @@ ingress:
hosts:
- "dataingestion.EXAMPLE_DOMAIN"

resources: {}
resources:
requests:
memory: 512Mi
cpu: 500m
limits:
memory: 1Gi
cpu: 1000m

autoscaling:
enabled: false
Expand Down
6 changes: 5 additions & 1 deletion charts/elasticsearch-efs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,12 @@ ingress:
tls: []

resources:
requests:
memory: 512Mi
cpu: 250m
limits:
memory: "6Gi"
memory: 1Gi
cpu: 500m

autoscaling:
enabled: false
Expand Down
8 changes: 7 additions & 1 deletion charts/kafka-connect-sink/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,13 @@ customEnv: { }
SQL_SERVER_CONNECTOR_CONFIG: /etc/sqlServerConnector.json
JDBC_CONNECTOR_CONFIG: /etc/jdbcConnector.sh

resources: { }
resources:
requests:
memory: 512Mi
cpu: 250m
limits:
memory: 1Gi
cpu: 500m
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
Expand Down
3 changes: 2 additions & 1 deletion charts/keycloak/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ spec:
name: kc-persistent-storage
ports:
- containerPort: 8080
resources: {}
resources:
{{- toYaml .Values.resources | nindent 12 }}
# - name: file-transfer-sidecar
# image: alpine:latest
# command: ["sh", "-c", "sleep infinity"]
Expand Down
9 changes: 9 additions & 0 deletions charts/keycloak/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,12 @@ pvc:

efsFileSystemId: "EXAMPLE_EFS_ID"


resources:
requests:
memory: 512Mi
cpu: 250m
limits:
memory: 1Gi
cpu: 500m

6 changes: 5 additions & 1 deletion charts/modernization-api/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,12 @@ mTLS:
nbsExternalName: app-classic.EXAMPLE_DOMAIN

resources:
requests:
memory: 512Mi
cpu: 250m
limits:
memory: "4Gi"
memory: 1Gi
cpu: 500m

autoscaling:
enabled: false
Expand Down
8 changes: 7 additions & 1 deletion charts/nbs-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,13 @@ pageBuilder:
edit:
enabled: "true"

resources: {}
resources:
requests:
memory: 512Mi
cpu: 250m
limits:
memory: 1Gi
cpu: 500m

nbsExternalName: app-classic.EXAMPLE_DOMAIN

Expand Down
6 changes: 5 additions & 1 deletion charts/nifi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,12 @@ ingress:
number: 8443

resources:
requests:
memory: 1Gi
cpu: 250m
limits:
memory: "6Gi"
memory: 2Gi
cpu: 500m

jvmheap:
init: "4g"
Expand Down
6 changes: 5 additions & 1 deletion charts/page-builder-api/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,12 @@ istioGatewayIngress:

# Kubernetes resource limits
resources:
requests:
memory: 512Mi
cpu: 250m
limits:
memory: "4Gi"
memory: 1Gi
cpu: 500m

autoscaling:
enabled: false
Expand Down
Loading