Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 3.06 KB

02-kyma-components.md

File metadata and controls

27 lines (20 loc) · 3.06 KB
title
Kyma components

The components directory contains the sources of all Kyma components. A Kyma component is any Pod, container, or image deployed with and referenced in a Kyma module or chart to provide the module's functionality. Each subdirectory in the components directory defines one component.

Details

Every Kyma component resides in a dedicated folder which contains its sources and a README.md file. This file provides instructions on how to build and develop the component.

The component's name consists of a term describing the component, followed by the component type. The first part of the name may differ depending on the component's purpose. This table lists the available types:

type description example
controller A Kubernetes Controller which reacts on a standard Kubernetes resource or manages Custom Resource Definition resources. The component's name reflects the name of the primary resource it controls. namespace-controller
controller-manager A daemon that embeds all Kubernetes Controllers of a domain. Such an approach brings operational benefits in comparison to shipping all controllers separately. A controller-manager takes the name of the domain it belongs to. asset-store-controller-manager
operator is a Kubernetes Operator which covers the application-specific logic behind the operation of the application, such as steps to upscale a stateful application. It reacts on changes made to custom resources derived from a given CustomResourceDefinition. It uses the name of the application it operates. application-operator
job A Kubernetes Job which performs a task once or periodically. It uses the name of the task it performs. istio-patch-job (not renamed yet)
proxy Acts as a proxy for an existing component, usually introducing a security model for this component. It uses the component's name. apiserver-proxy
service Serves an HTTP/S-based API, usually securely exposed to the public. It uses the domain name and the API it serves. connector-service
broker Implements the OpenServiceBroker specification to enrich the Kyma Service Catalog with the services of a provider. It uses the name of the provider it integrates with. azure-broker
configurer A one-time task which usually runs as an Init Container in order to configure the application. velero-plugins-configurer

Development

Follow the development guide when you add a new component to the kyma repository.