This document describes the Kubeapps architecture at a high level.
At the heart of Kubeapps is an in-cluster Kubernetes dashboard that provides you a simple browse and click experience for installing and managing Kubernetes applications packaged as Helm charts.
Additionally, the dashboard integrates with the Kubernetes service catalog and enables you to browse and provision cloud services via the Open Service Broker API.
The dashboard is written in the JavaScript programming language and is developed using the React JavaScript library.
In order to secure the access to Tiller and allow the dashboard to contact the Helm Tiller server we deploy a proxy that handles the communication with Tiller. The goal of this proxy is to validate that the user doing the request has sufficent permissions to create or delete all the resources that are part of the specific chart being deployed or deleted.
This proxy is written in Go. Check more details about the implementation in this document.
Kubeops is the successor of Tiller proxy. It's the service in charge of communicating both with the Helm (v3) API and other k8s resources like AppRepositories or Secrets. Check more details about the implementation in this document.
Chart repositories in Kubeapps are managed with a CustomResourceDefinition
called apprepositories.kubeapps.com
. Each repository added to Kubeapps is an object of type AppRepository
and the apprepository-controller
will watch for changes on those type of objects to update the list of available charts to deploy.
The asset-syncer
component is tool that scans a Helm chart repository and populates chart metadata in a database. This metadata is then served by the assetsvc
component. Check more details about the implementation in this document.
The assetsvc
component is a micro-service that creates an API endpoint for accessing the metadata for charts and other resources that's populated in a database. Check more details about the implementation in this document.