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
Currently, resource requests are required to be integer strings. Attempting to use milliCPU notation fails.
This works:
starrocks: cn: cpu: '1' memory: 4Gi replicas: 1 fe: cpu: '1' memory: 4Gi replicas: 3
This does not:
starrocks: cn: cpu: 500m memory: 4Gi replicas: 1 fe: cpu: 500m memory: 4Gi replicas: 3
Allow use of milliCPU notation and pass through to the underlying statefulset and pod resource requests as specified.
N/A
The text was updated successfully, but these errors were encountered:
Operator has supported milliCPU from the beginning. What version is your Operator, and what error did it report? This is from StarRocksCluster CR.
limits: cpu: 2 memory: 4Gi requests: cpu: 100m memory: 200Mi
Sorry, something went wrong.
I believe the operator has already supported this requirement. I will now close this issue. If your problem has not been resolved, please reopen it.
No branches or pull requests
Describe the current behavior
Currently, resource requests are required to be integer strings. Attempting to use milliCPU notation fails.
This works:
This does not:
Describe the enhancement
Allow use of milliCPU notation and pass through to the underlying statefulset and pod resource requests as specified.
Additional context
N/A
The text was updated successfully, but these errors were encountered: