You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a new Kubernetes Image Puller is created, the deployment, doesn't have resources assigned. But this is necessary when resource quotas are applied in ocp.
Two possible solution:
Automatically assign some resources e.g.
resources:
requests:
cpu: '0.2'
memory: '100Mi'
limits:
cpu: '0.2'
memory: '100Mi'
Assign the resources as a parameter when creating a Kubernetes image puller instance e.g.
DeploymentRequestsMemory
DeploymentRequestsCPU
DeploymentLimitsMemory
DeploymentLimitsCPU
The text was updated successfully, but these errors were encountered:
When a new Kubernetes Image Puller is created, the deployment, doesn't have resources assigned. But this is necessary when resource quotas are applied in ocp.
Two possible solution:
resources:
requests:
cpu: '0.2'
memory: '100Mi'
limits:
cpu: '0.2'
memory: '100Mi'
DeploymentRequestsMemory
DeploymentRequestsCPU
DeploymentLimitsMemory
DeploymentLimitsCPU
The text was updated successfully, but these errors were encountered: