-
Notifications
You must be signed in to change notification settings - Fork 192
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Feature Description
Add the resource field to the initContainer within the TestRun Custom Resource Definition (CRD). This would allow users to explicitly configure CPU and memory requests and limits, ensuring that the initContainer is scheduled and runs stably.
Suggested Solution (optional)
apiVersion: k6.io/v1alpha1
kind: TestRun
metadata:
name: my-test
spec:
# ... other fields
runner:
initContainers:
- name: example
image: "busybox"
resources:
requests:
memory: "64Mi"
cpu: "100m"
limits:
memory: "128Mi"
cpu: "200m"
# ... other fields
Already existing or connected issues / PRs (optional)
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request