Uploaded image for project: 'Red Hat Advanced Cluster Management'
  1. Red Hat Advanced Cluster Management
  2. ACM-9998

MCE: Specify memory limits for containers in YAML configuration files to optimize resource allocation and prevent memory overcommitment

XMLWordPrintable

    • Icon: Story Story
    • Resolution: Done
    • Icon: Normal Normal
    • Future
    • Future
    • Installer
    • None
    • False
    • None
    • False
    • Hide

      Provide the required acceptance criteria using this template.
      * ...
      Show
      Provide the required acceptance criteria using this template. * ...
    • No

      Value Statement

      By specifying memory limits for containers, we prevent memory over-commitment, improve application stability, and ensure efficient resource utilization within the Kubernetes cluster.

      Targeted Files (TBD):

      •  

      Definition of Done for Engineering Story Owner (Checklist)

      • Memory limits are defined for containers in Kubernetes configuration files.
      • Memory allocation aligns with application requirements and cluster capacity.
      • Pods are successfully deployed and tested with memory limits enforced.

      Noncompliant code example

      apiVersion: v1
      kind: Pod
      metadata:
        name: example
      spec:
        containers:
          - name: web # Noncompliant
            image: nginx

      Compliant solution

      apiVersion: v1
      kind: Pod
      metadata:
        name: example
      spec:
        containers: 
          - name: web
            image: nginx
            resources:
              limits:
                memory: 100Mi

      Development Complete

      • The code is complete.
      • Functionality is working.
      • Any required downstream Docker file changes are made.

      Tests Automated

      • [ ] Unit/function tests have been automated and incorporated into the
        build.
      • [ ] 100% automated unit/function test coverage for new or changed APIs.

      Secure Design

      • [ ] Security has been assessed and incorporated into your threat model.

      Multidisciplinary Teams Readiness

      Support Readiness

      • [ ] The must-gather script has been updated.

            Unassigned Unassigned
            dbennett@redhat.com Disaiah Bennett
            Thuy Nguyen Thuy Nguyen
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: