Table: kubernetes_config_map - Query Kubernetes Config Maps using SQL
Kubernetes Config Maps is a resource that allows you to decouple configuration artifacts from image content to keep containerized applications portable. It is used to store non-confidential data in key-value pairs and consumed by pods or used to store configuration details, such as environment variables for a pod. Kubernetes Config Maps offers a centralized and secure method to manage and deploy configuration data.
Table Usage Guide
The kubernetes_config_map
table provides insights into Config Maps within Kubernetes. As a DevOps engineer, explore Config Map-specific details through this table, including data, creation timestamps, and associated metadata. Utilize it to uncover information about Config Maps, such as those used in specific namespaces, the configuration details they hold, and the pods that may be consuming them.
Examples
Basic Info
Explore the age and details of Kubernetes configuration maps to understand their longevity and content. This can help you manage and optimize your Kubernetes resources over time.
select name, namespace, data.key, data.value, age(current_timestamp, creation_timestamp)from kubernetes_config_map, jsonb_each(data) as dataorder by namespace, name;
select name, namespace, data.key, data.value, strftime('%s', 'now') - strftime('%s', creation_timestamp) as agefrom kubernetes_config_map, json_each(data) as dataorder by namespace, name;
List manifest resources
Analyze the settings to understand the distribution of resources across different namespaces within your Kubernetes environment. This can help in managing resources effectively and preventing any potential conflicts or overlaps.
select name, namespace, data.key, data.value, pathfrom kubernetes_config_map, jsonb_each(data) as datawhere path is not nullorder by namespace, name;
select name, namespace, data.key, data.value, pathfrom kubernetes_config_map, json_each(data) as datawhere path is not nullorder by namespace, name;
Query examples
Control examples
Schema for kubernetes_config_map
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
annotations | jsonb | Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. | |
binary_data | jsonb | Contains the configuration binary data. | |
context_name | text | Kubectl config context name. | |
creation_timestamp | timestamp with time zone | CreationTimestamp is a timestamp representing the server time when this object was created. | |
data | jsonb | Contains the configuration data. | |
deletion_grace_period_seconds | bigint | Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. | |
deletion_timestamp | timestamp with time zone | DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. | |
end_line | bigint | The path to the manifest file. | |
finalizers | jsonb | Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. | |
generate_name | text | GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. | |
generation | bigint | A sequence number representing a specific generation of the desired state. | |
immutable | boolean | If set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil. | |
labels | jsonb | Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. | |
name | text | Name of the object. Name must be unique within a namespace. | |
namespace | text | Namespace defines the space within which each name must be unique. | |
owner_references | jsonb | List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. | |
path | text | The path to the manifest file. | |
resource_version | text | An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. | |
source_type | text | The source of the resource. Possible values are: deployed and manifest. If the resource is fetched from the spec file the value will be manifest. | |
sp_connection_name | text | Steampipe connection name. | |
sp_ctx | jsonb | Steampipe context in JSON form. | |
start_line | bigint | The path to the manifest file. | |
tags | jsonb | A map of tags for the resource. This includes both labels and annotations. | |
title | text | Title of the resource. | |
uid | text | UID is the unique in time and space value for this object. |
Export
This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.
You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh
script:
/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- kubernetes
You can pass the configuration to the command with the --config
argument:
steampipe_export_kubernetes --config '<your_config>' kubernetes_config_map