Control: ReplicaSet containers should have a memory limit
Description
Containers in a ReplicaSet should have memory limit which restricts the container to use no more than a given amount of user or system memory.
Usage
Run the control in your terminal:
powerpipe control run kubernetes_compliance.control.replicaset_memory_limit
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run kubernetes_compliance.control.replicaset_memory_limit --share
SQL
This control uses a named query:
select coalesce(uid, concat(path, ':', start_line)) as resource, case when c -> 'resources' -> 'limits' ->> 'memory' is null then 'alarm' else 'ok' end as status, case when c -> 'resources' -> 'limits' ->> 'memory' is null then c ->> 'name' || ' does not have a memory limit.' else c ->> 'name' || ' has a memory limit of ' || (c -> 'resources' -> 'limits' ->> 'memory') || '.' end as reason, name as replicaset_name , coalesce(context_name, '') as context_name, namespace, source_type, coalesce(path || ':' || start_line || '-' || end_line, '') as pathfrom kubernetes_replicaset, jsonb_array_elements(template -> 'spec' -> 'containers') as c;