turbot/kubernetes
steampipe plugin install kubernetes

Table: kubernetes_service - Query Kubernetes Services using SQL

Kubernetes Service is a resource within Kubernetes that is used to expose an application running on a set of Pods. The set of Pods targeted by a Service is determined by a Label Selector. It provides the abstraction of a logical set of Pods and a policy by which to access them, often referred to as micro-services.

Table Usage Guide

The kubernetes_service table offers insights into the services within a Kubernetes cluster. As a DevOps engineer, you can probe service-specific details through this table, including service configurations, status, and associated metadata. Use it to discover information about services, such as those with specific selectors, the type of service, and the ports exposed by the service.

Examples

Basic Info - kubectl describe service --all-namespaces columns

Analyze the settings of your Kubernetes services to understand their organization and longevity. This query is useful for gaining insights into how your services are distributed across namespaces, their types, and how long they have been active.

select
name,
namespace,
type,
cluster_ip,
age(current_timestamp, creation_timestamp)
from
kubernetes_service
order by
namespace,
name;
select
name,
namespace,
type,
cluster_ip,
strftime('%s', 'now') - strftime('%s', creation_timestamp) as age
from
kubernetes_service
order by
namespace,
name;

List manifest resources

Analyze the settings to understand the distribution of resources within a Kubernetes cluster. This can help to identify instances where resources are not properly allocated, improving the efficiency of the cluster.

select
name,
namespace,
type,
cluster_ip,
path
from
kubernetes_service
where
path is not null
order by
namespace,
name;
select
name,
namespace,
type,
cluster_ip,
path
from
kubernetes_service
where
path is not null
order by
namespace,
name;

Schema for kubernetes_service

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
allocate_load_balancer_node_portsbooleanIndicates whether NodePorts will be automatically allocated for services with type LoadBalancer, or not.
annotationsjsonbAnnotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata.
cluster_iptextIP address of the service and is usually assigned randomly.
cluster_ipsjsonbA list of IP addresses assigned to this service, and are usually assigned randomly.
context_nametextKubectl config context name.
creation_timestamptimestamp with time zoneCreationTimestamp is a timestamp representing the server time when this object was created.
deletion_grace_period_secondsbigintNumber 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_timestamptimestamp with time zoneDeletionTimestamp is RFC 3339 date and time at which this resource will be deleted.
end_linebigintThe path to the manifest file.
external_ipsjsonbA list of IP addresses for which nodes in the cluster will also accept traffic for this service.
external_nametextThe external reference that discovery mechanisms will return as an alias for this service (e.g. a DNS CNAME record).
external_traffic_policytextDenotes whether the service desires to route external traffic to node-local or cluster-wide endpoints.
finalizersjsonbMust 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_nametextGenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided.
generationbigintA sequence number representing a specific generation of the desired state.
health_check_node_portbigintSpecifies the healthcheck nodePort for the service.
ip_familiesjsonbA list of IP families (e.g. IPv4, IPv6) assigned to this service, and is gated by the 'IPv6DualStack' feature gate.
ip_family_policytextSpecifies the dual-stack-ness requested or required by this service, and is gated by the 'IPv6DualStack' feature gate.
labelsjsonbMap 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.
load_balancer_ingressjsonbA list containing ingress points for the load-balancer.
load_balancer_ipinetThe IP specified when the load balancer was created.
load_balancer_source_rangesjsonbA list of source ranges that will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs.
nametextName of the object. Name must be unique within a namespace.
namespacetextNamespace defines the space within which each name must be unique.
owner_referencesjsonbList 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.
pathtextThe path to the manifest file.
portsjsonbA list of ports that are exposed by this service.
publish_not_ready_addressesbooleanIndicates that any agent which deals with endpoints for this service should disregard any indications of ready/not-ready.
resource_versiontextAn opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed.
selectorjsonbRoute service traffic to pods with label keys and values matching this selector.
selector_querytextA query string representation of the selector.
session_affinitytextSupports 'ClientIP' and 'None'. Used to maintain session affinity.
session_affinity_client_ip_timeoutbigintSpecifies the ClientIP type session sticky time in seconds.
source_typetextThe source of the resource. Possible values are: deployed and manifest. If the resource is fetched from the spec file the value will be manifest.
start_linebigintThe path to the manifest file.
tagsjsonbA map of tags for the resource. This includes both labels and annotations.
titletextTitle of the resource.
topology_keysjsonbA preference-order list of topology keys which implementations of services should use to preferentially sort endpoints when accessing this Service, it can not be used at the same time as externalTrafficPolicy=Local.
typetextType determines how the Service is exposed.
uidtextUID 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_service