Tables in Kubernetes
The kubernetes plugin includes 39 tables:
Name | Description | Queries |
---|---|---|
Lists the configuration settings from the configured charts | ||
List all of the releases of chart in a Kubernetes cluster | ||
Lists the raw templates defined in the configured charts | ||
Lists the fully rendered templates using the values provided in the config | ||
Lists the values from chart's values.yaml file as well as the values listed in the configured values override files | ||
- | ||
ClusterRole contains rules that represent a set of permissions. | ||
A ClusterRoleBinding grants the permissions defined in a cluster role to a user or set of users. Access granted by ClusterRoleBinding is cluster-wide. | ||
Config Map can be used to store fine-grained information like individual properties or coarse-grained information like entire config files or JSON blobs. | ||
Cron jobs are useful for creating periodic and recurring tasks, like running backups or sending emails. | ||
Kubernetes Custom Resource Definition. | ||
A DaemonSet ensures that all (or some) Nodes run a copy of a Pod. | ||
Kubernetes Deployment enables declarative updates for Pods and ReplicaSets. | ||
Set of addresses and ports that comprise a service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#services-without-selectors. | ||
EndpointSlice represents a subset of the endpoints that implement a service. | ||
Kubernetes Event is a report of an event somewhere in the cluster. | ||
Kubernetes HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified. | ||
Ingress exposes HTTP and HTTPS routes from outside the cluster to services within the cluster. Traffic routing is controlled by rules defined on the Ingress resource. | ||
A Job creates one or more Pods and will continue to retry execution of the Pods until a specified number of them successfully terminate. | ||
Kubernetes Limit Range | ||
Kubernetes Namespace provides a scope for Names. | ||
Network policy specifiy how pods are allowed to communicate with each other and with other network endpoints. | ||
Kubernetes Node is a worker node in Kubernetes. | ||
A PersistentVolume (PV) is a piece of storage in the cluster that has been provisioned by an administrator or dynamically provisioned using Storage Classes. PVs are volume plugins like Volumes, but have a lifecycle independent of any individual Pod that uses the PV. | ||
A PersistentVolumeClaim (PVC) is a request for storage by a user. | ||
Kubernetes Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts. | ||
A Pod Disruption Budget limits the number of Pods of a replicated application that are down simultaneously from voluntary disruptions. | ||
A Pod Security Policy is a cluster-level resource that controls security sensitive aspects of the pod specification. The PodSecurityPolicy objects define a set of conditions that a pod must run with in order to be accepted into the system, as well as defaults for the related fields. | ||
Kubernetes Pod Template is a collection of templates for creating copies of a predefined pod. | ||
Kubernetes replica set ensures that a specified number of pod replicas are running at any given time. | ||
A Replication Controller makes sure that a pod or homogeneous set of pods are always up and available. If there are too many pods, it will kill some. If there are too few, the Replication Controller will start more. | ||
Kubernetes Resource Quota | ||
Role contains rules that represent a set of permissions. | ||
A role binding grants the permissions defined in a role to a user or set of users. It holds a list of subjects (users, groups, or service accounts), and a reference to the role being granted. | ||
Secrets can be used to store sensitive information either as individual properties or coarse-grained entries like entire files or JSON blobs. | ||
A service provides an abstract way to expose an application running on a set of Pods as a network service. | ||
A service account provides an identity for processes that run in a Pod. | ||
A statefulSet is the workload API object used to manage stateful applications. | ||
Storage class provides a way for administrators to describe the classes of storage they offer. |