Skip to content

Commit

Permalink
fi: increase resource limits
Browse files Browse the repository at this point in the history
  • Loading branch information
ReuDa committed Oct 7, 2024
1 parent e8d2029 commit 9bba53f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 23 deletions.
2 changes: 1 addition & 1 deletion charts/steadybit-extension-postman/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: steadybit-extension-postman
description: Steadybit Postman extension Helm chart for Kubernetes.
version: 1.7.6
version: 1.7.7
appVersion: v2.0.5
home: https://www.steadybit.com/
icon: https://steadybit-website-assets.s3.amazonaws.com/logo-symbol-transparent.png
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ manifest should match snapshot using podAnnotations and Labels:
timeoutSeconds: 1
resources:
limits:
cpu: 200m
memory: 128Mi
cpu: 500m
memory: 256Mi
requests:
cpu: 50m
memory: 32Mi
Expand Down Expand Up @@ -145,8 +145,8 @@ manifest should match snapshot with TLS:
timeoutSeconds: 1
resources:
limits:
cpu: 200m
memory: 128Mi
cpu: 500m
memory: 256Mi
requests:
cpu: 50m
memory: 32Mi
Expand Down Expand Up @@ -240,8 +240,8 @@ manifest should match snapshot with extra env vars:
timeoutSeconds: 1
resources:
limits:
cpu: 200m
memory: 128Mi
cpu: 500m
memory: 256Mi
requests:
cpu: 50m
memory: 32Mi
Expand Down Expand Up @@ -323,8 +323,8 @@ manifest should match snapshot with extra labels:
timeoutSeconds: 1
resources:
limits:
cpu: 200m
memory: 128Mi
cpu: 500m
memory: 256Mi
requests:
cpu: 50m
memory: 32Mi
Expand Down Expand Up @@ -410,8 +410,8 @@ manifest should match snapshot with mutual TLS:
timeoutSeconds: 1
resources:
limits:
cpu: 200m
memory: 128Mi
cpu: 500m
memory: 256Mi
requests:
cpu: 50m
memory: 32Mi
Expand Down Expand Up @@ -511,8 +511,8 @@ manifest should match snapshot with mutual TLS using containerPaths:
timeoutSeconds: 1
resources:
limits:
cpu: 200m
memory: 128Mi
cpu: 500m
memory: 256Mi
requests:
cpu: 50m
memory: 32Mi
Expand Down Expand Up @@ -592,8 +592,8 @@ manifest should match snapshot with podSecurityContext:
timeoutSeconds: 1
resources:
limits:
cpu: 200m
memory: 128Mi
cpu: 500m
memory: 256Mi
requests:
cpu: 50m
memory: 32Mi
Expand Down Expand Up @@ -675,8 +675,8 @@ manifest should match snapshot with priority class:
timeoutSeconds: 1
resources:
limits:
cpu: 200m
memory: 128Mi
cpu: 500m
memory: 256Mi
requests:
cpu: 50m
memory: 32Mi
Expand Down Expand Up @@ -757,8 +757,8 @@ manifest should match snapshot without TLS:
timeoutSeconds: 1
resources:
limits:
cpu: 200m
memory: 128Mi
cpu: 500m
memory: 256Mi
requests:
cpu: 50m
memory: 32Mi
Expand Down
4 changes: 2 additions & 2 deletions charts/steadybit-extension-postman/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ resources:
cpu: "50m"
limits:
# resources.limits.memory -- The limit of memory to be used
memory: "128Mi"
memory: "256Mi"
# resources.limits.cpu -- The limit of cpu share to be used during its interval
cpu: "200m"
cpu: "500m"

serviceAccount:
# serviceAccount.create -- Specifies whether a ServiceAccount should be created.
Expand Down
2 changes: 0 additions & 2 deletions e2e/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ func TestWithMinikube(t *testing.T) {
return []string{
"--set", "logging.level=debug",
"--set", "postman.apiKey=testApiKey",
"--set", "resources.limits.cpu=500m",
"--set", "resources.limits.memory=512Mi",
"--set", "extraEnv[0].name=STEADYBIT_EXTENSION_POSTMAN_BASE_URL",
"--set", fmt.Sprintf("extraEnv[0].value=%s:%s", "http://host.minikube.internal", port),
}
Expand Down

0 comments on commit 9bba53f

Please sign in to comment.