openshift-kni / eco-goinfra

Apache License 2.0
7 stars 33 forks source link

mco pkg: WithSystemReserved method fix #401

Closed elenagerman closed 4 months ago

elenagerman commented 4 months ago

wrong map keys definition, it was initialized as a variable and replaced with the input values as well. As a result:

"systemReserved": {
                "27Gi": "27Gi",
                "500m": "500m"
            },

instead of

"systemReserved": {
                "memory": "27Gi",
                "cpu": "500m"
            }