public interface ResourceRequirementsOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
containsLimits(String key)
public abstract boolean containsLimits(String key)Only memory and CPU are supported. Note: The only supported values for CPU are '1', '2', and '4'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
map<string, string> limits = 1;
| Name | Description |
| key | String |
| Type | Description |
| boolean |
getCpuIdle()
public abstract boolean getCpuIdle()Determines whether CPU should be throttled or not outside of requests.
bool cpu_idle = 2;
| Type | Description |
| boolean | The cpuIdle. |
getLimits()
public abstract Map<String,String> getLimits()Use #getLimitsMap() instead.
| Type | Description |
| Map<String,String> |
getLimitsCount()
public abstract int getLimitsCount()Only memory and CPU are supported. Note: The only supported values for CPU are '1', '2', and '4'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
map<string, string> limits = 1;
| Type | Description |
| int |
getLimitsMap()
public abstract Map<String,String> getLimitsMap()Only memory and CPU are supported. Note: The only supported values for CPU are '1', '2', and '4'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
map<string, string> limits = 1;
| Type | Description |
| Map<String,String> |
getLimitsOrDefault(String key, String defaultValue)
public abstract String getLimitsOrDefault(String key, String defaultValue)Only memory and CPU are supported. Note: The only supported values for CPU are '1', '2', and '4'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
map<string, string> limits = 1;
| Name | Description |
| key | String |
| defaultValue | String |
| Type | Description |
| String |
getLimitsOrThrow(String key)
public abstract String getLimitsOrThrow(String key)Only memory and CPU are supported. Note: The only supported values for CPU are '1', '2', and '4'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
map<string, string> limits = 1;
| Name | Description |
| key | String |
| Type | Description |
| String |