Kamäleon

KAMÄLEON is a cloud-based platform developed by the BMW Group in collaboration with selected suppliers to establish a clear framework and facilitate real-time discussion between the company and its suppliers. The platform adapts to its environment like a chameleon, providing both sides with unprecedented clarity on material requirements and supplier capacities. KAMÄLEON not only describes the current status in the short term, but also highlights potential future bottlenecks, allowing both partners to react in good time and work out solutions together before any potential damage occurs. As a result, the platform significantly improves stability in the supply chain. The BMW Group's KAMÄLEON project has been named a finalist in the VDA Logistics Awards.

Catena-X Automotive Network e.V.

Kerberos

In Windows Server 2012 and Windows 8, Kerberos serves as an authentication protocol utilized for validating the identity of both users and hosts. This discussion focuses on the details pertaining to Kerberos authentication.

https://learn.microsoft.com/en-us/windows-server/security/kerberos/kerberos-authentication-overview external-link

Key Performance Indicator

In business administration, the term "key performance indicators" generally refers to metrics that describe the success, performance, or utilization of a company, its individual organizational units, or a machine.

http://wirtschaftslexikon.gabler.de/Definition/key-performance-indicator-kpi.html external-link

Key-Value Stores

NoSQL Key-Value Stores excel at handling the vastness of the internet - thousands of servers, millions of users - with impressive speed, optimized storage, and retrieval. They achieve such performance by foregoing numerous features of relational databases and implementing only those essential for highly scalable web applications.

https://www.bitkom.org/sites/default/files/file/import/140228-Big-Data-Technologien-Wissen-fuer-Entscheider.pdf external-link

Keycloak

Keycloak is an open-source identity and access management solution that provides authentication, authorization, and single sign-on capabilities for applications and services. It enables organizations to secure their applications and APIs by managing user identities, defining access policies, and integrating with various identity providers and authentication mechanisms. Keycloak supports standards like OAuth 2.0, OpenID Connect, and SAML for secure identity management.

https://www.keycloak.org/ external-link

Keypair

A keypair refers to a set of two related keys - an asymmetric encryption public key and a private key - which can be either active or revoked.

https://gaia-x.gitlab.io/glossary/ external-link

Konnex

Konnex is a fieldbus system for building automation that connects electronic devices and systems and enables standardized communication. It optimizes the control and monitoring of heating, ventilation, lighting, and security, saving energy costs and increasing comfort in buildings.

https://it-gipfelglossar.hpi-web.de/knx/ external-link

kOps (Kubernetes Operations)

kOps is an open-source tool that automates the creation, upgrading, destruction, and maintenance of highly available, production-grade Kubernetes clusters while also provisioning the necessary cloud infrastructure. Currently, kOps supports AWS officially, while DigitalOcean, GCE, and OpenStack are in beta support, and Azure is in alpha. The tool provides a fully automated installation process, identifies clusters using DNS, and offers self-healing functionality, as everything runs in Auto-Scaling Groups. kOps also supports multiple operating systems, including Amazon Linux, Debian, Flatcar, RHEL, Rocky, and Ubuntu, and offers high-availability support. Additionally, the tool can directly provision or generate Terraform manifests.

https://kubernetes.io/docs/reference/glossary/?all=true external-link

kube-controller-manager

The control plane component that manages Kubernetes' system state by running controller processes is called the controller manager. Although each controller is a separate process, the controller manager compiles them into a single binary and runs them in a single process to simplify management and reduce complexity. The controller manager is responsible for managing various controllers, such as the Node controller, Endpoint controller, and Service Account and Token controller, among others. These controllers continuously monitor the system's state and attempt to move it to the desired state.

https://kubernetes.io/docs/reference/glossary/?all=true external-link

kube-proxy

kube-proxy is an essential network proxy that runs on every node in a Kubernetes cluster. It implements the Service concept of Kubernetes by maintaining network rules on the nodes, which allow network communication to the Pods from both internal and external network sessions. To achieve this, kube-proxy can use the packet filtering layer of the operating system if it's available, or it can forward traffic itself if there is no packet filtering layer available.

https://kubernetes.io/docs/reference/glossary/?all=true external-link

kube-scheduler

The control plane component responsible for assigning nodes to newly created Pods with no node assignment is called the scheduler. The scheduler watches for newly created Pods and selects a suitable node for them to run on based on various factors such as resource requirements, constraints, affinity and anti-affinity specifications, data locality, interference, and deadlines. The goal of the scheduler is to optimize resource utilization and ensure high availability of the workload.

https://kubernetes.io/docs/reference/glossary/?all=true external-link

Kubeadm

kubeadm is a tool that simplifies the process of deploying a secure Kubernetes cluster. It automates the installation and configuration of the control plane and worker nodes, allowing users to quickly set up a functional cluster.

https://kubernetes.io/docs/reference/glossary/?all=true external-link

Kubeapps

Kubeapps is a web-based application that operates within a Kubernetes cluster. With just a single installation, users can deploy, manage, and upgrade applications on the cluster.

https://kubeapps.dev/ external-link

Kubectl

kubectl is a command line interface that interacts with the Kubernetes control plane through the Kubernetes API. It enables users to create, inspect, update, and delete Kubernetes objects on a cluster.

https://kubernetes.io/docs/reference/glossary/?all=true external-link

Kubelet

The kubelet is an essential component that operates on each node within a cluster and its primary responsibility is to ensure the healthy execution of containers that exist within Pods. By taking in a collection of PodSpecs, the kubelet ensures that the containers defined within these PodSpecs are running in good health. Notably, the kubelet doesn't handle the management of containers that weren't created by Kubernetes.

https://kubernetes.io/docs/reference/glossary/?all=true external-link

Kubernetes

Kubernetes, also referred to as K8s, is a freely available platform for automated deployment, scaling, and administration of applications that have been containerized.

https://www.gxfs.eu/de/glossar/ external-link

Kubernetes API

The Kubernetes API server is responsible for providing Kubernetes functionality through a RESTful interface and storing the state of the cluster. Kubernetes resources and their intents are stored as API objects and are modified via RESTful calls to the API. The API server allows users to manage configuration in a declarative way, and they can interact with it directly or through tools like kubectl. Additionally, the Kubernetes API is flexible and can be extended to support custom resources.

https://kubernetes.io/docs/reference/glossary/?all=true external-link

Kubernetes Cluster

A Kubernetes cluster is a group of servers where Kubernetes is installed.

https://www.mirantis.com/blog/kubernetes-cheat-sheet/ external-link