turbot/kubernetes_compliance

Query: cronjob_memory_limit

Usage

powerpipe query kubernetes_compliance.query.cronjob_memory_limit

Steampipe Tables

SQL

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 cronjob_name,
coalesce(context_name, '') as context_name,
namespace,
source_type,
coalesce(path || ':' || start_line || '-' || end_line, '') as path
from
kubernetes_cronjob,
jsonb_array_elements(
job_template -> 'spec' -> 'template' -> 'spec' -> 'containers'
) as c;

Controls

The query is being used by the following controls: