We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/kind bug
/area library
Operating System:
Go Pkg Version: devfile/library v1.2.0
Describe the bug:
Additional resource settings were added in redhat-developer/odo#5132
To Reproduce: define container component with
memoryLimit: 1Gi memoryRequest: 1Gi cpuRequest: 1m cpuLimit: 1m
Devfile library translates it to container with only
resources: limits: memory: 1Gi
memoryRequest, cpuRequest, cpuLimit are not reflected
to have all fields reflected in kubernetes container spec
resources: requests: memory: "1Gi" cpu: "1m" limits: memory: "1Gi" cpu: "1m"
The text was updated successfully, but these errors were encountered:
yangcao77
Successfully merging a pull request may close this issue.
/kind bug
Which area this bug is related to?
/area library
What versions of software are you using?
Operating System:
Go Pkg Version:
devfile/library v1.2.0
Bug Summary
Describe the bug:
Additional resource settings were added in redhat-developer/odo#5132
To Reproduce:
define container component with
Devfile library translates it to container with only
memoryRequest, cpuRequest, cpuLimit are not reflected
Expected behavior
to have all fields reflected in kubernetes container spec
The text was updated successfully, but these errors were encountered: