fix: increase memory limits for Azure RHEL-AI provisioner task#750
Merged
adrianriobo merged 1 commit intoredhat-developer:mainfrom Mar 25, 2026
Merged
Conversation
The mapt provisioner container running the Azure RHEL-AI Tekton task is being OOMKilled (exit code 137) when provisioning large Azure VM types. The previous limits (request: 200Mi, limit: 600Mi) are insufficient for the Terraform operations required. Increase memory resources for the `infra-azure-rhel-ai` Tekton task: | | Before | After | |---|---|---| | request | 200Mi | 1Gi | | limit | 600Mi | 2Gi | The request is raised to 1Gi so the scheduler places the pod on a node that can actually sustain the workload. The 2Gi limit provides headroom for spikes during large Azure VM provisioning. - `tkn/template/infra-azure-rhel-ai.yaml` — source template updated - `tkn/infra-azure-rhel-ai.yaml` — regenerated via `make tkn-update` - `tkn/template/infra-azure-rhel.yaml` — source template updated - `tkn/infra-azure-rhel.yaml` — regenerated via `make tkn-update` Signed-off-by: Xiyang Dong <xdong@redhat.com>
b331082 to
60203cd
Compare
Contributor
Author
|
Tested provisioning Azure with the change, now it works with no OOM Kill. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The mapt provisioner container running the Azure RHEL-AI Tekton task
is being OOMKilled (exit code 137) when provisioning large Azure VM
types. The previous limits (request: 200Mi, limit: 600Mi) are
insufficient for the Terraform operations required.
Increase memory resources for the
infra-azure-rhel-aiTekton task:The request is raised to 1Gi so the scheduler places the pod on a node
that can actually sustain the workload. The 2Gi limit provides headroom
for spikes during large Azure VM provisioning.
tkn/template/infra-azure-rhel-ai.yaml— source template updatedtkn/infra-azure-rhel-ai.yaml— regenerated viamake tkn-update