The Kubernetes operator provided by this repository allows to manage the lifecycle of components in Kubernetes clusters.
Here, components are understood as sets of Kubernetes resources (such as deployments, services, RBAC entities, ...), and components are described as instances of the custom resource type components.cs.core.sap.com
(kind Component
), which will be reconciled by component-operator. The Component
type allows to specify
Thus, components are similar to flux kustomizations, but have some important advantages:
spec.revision
field.spec.dependencies
) are not only honored at creation/update, but also on deletion.A sample component could look like this:
---
apiVersion: core.cs.sap.com/v1alpha1
kind: Component
metadata:
namespace: comp-ns
name: comp-name
spec:
namespace: target-ns
name: target-name
kubeConfig:
secretRef:
name: kubeconfig
requeueInterval: 10m
retryInterval: 3m
timeout: 5m
sourceRef:
fluxGitRepository:
namespace: source-ns
name: source-name
revision: main/4b14dbc37ca976be75a7508bb41fb99d4a36ab9
path: ./deploy
values:
someKey: someValue
valuesFrom:
- name: values-secret
decryption:
provider: sops
secretRef:
name: sops-secret
postBuild:
substitute:
VAR: VALUE
substituteFrom:
- name: subst-secret
dependencies:
- namespace: other-namespace
name: other-component
- name: another-component
The optional fields spec.namespace
and spec.name
may be provided to customize the deployment namespace/name of the component (as defined by component-operator-runtime). If not set, the target namespace and name will equal metadata.namespace
and metadata.name
of the component.
By default, the dependent objects will be deployed in the same cluster where the component resides. A kubeconfig may be provided to deploy into a remote cluster,
by specifying a secret (in the component's namespace) as spec.kubeConfig.secretRef.name
. By default, the secret will be looked up at one of the following keys: value
, value.yaml
, value.yml
(in this order). A custom key can be specified as spec.kubeConfig.secretRef.key
. Note that the used kubeconfig must not use any kubectl plugins, such as kubelogin.
The field spec.requeueInterval
defines the period, after which a component is re-reconciled after a previously successful reconcilation.
It is optional, the default is 10 minutes.
The field spec.retryInterval
defines the period, after which a component is re-reconciled if a retriable error occurs.
Check the component-operator-runtime documentation for more details about retriable errors. This field is optional; if unset the retry interval equals the effective requeue interval.
Finally, the field spec.timeout
defines how long dependent objects are expected to take to become ready. If not all depenents are ready, then the component state is Processing
until the timeout has elapsed; afterwards, the component state flips to Error
. Note that the operator still tries to reconcile the dependent objects in that case, just as before. The timeout restarts counting down whenever the component itself, or the rendered dependent manifests change.
The timeout field is optional; if unset, it is defaulted with the effective requeue interval.
The mandatory field spec.sourceRef
defines the source of the manifests used for generation of the dependent objects.
Currently, the following types of sources are supported (exactly one must be present):
# Flux GitRepository
sourceRef:
fluxGitRepository:
# namespace: source-ns
name: gitrepo-name
# Flux OciRepository
sourceRef:
fluxOciRepository:
# namespace: source-ns
name: ocirepo-name
# Flux Bucket
sourceRef:
fluxBucket:
# namespace: source-ns
name: bucket-name
# Flux HelmChart
sourceRef:
fluxHelmChart:
# namespace: source-ns
name: helmchart-name
Cross-namespace references are allowed; if namespace is not provided, the source will be assumed to exist in the component's namespace.
It is possible to pin a Component
resource to a specific revision of the source artifact by setting spec.revision
.
Pinning means that the component will remain in a Pending
state, until the used source object's revision matches the the value
specified in spec.revision
. More precisely, in case of flux source resources, the field refers to status.artifact.revision
of the flux object.
It should be noted that a revision mismatch in the above sense never blocks the deletion of the component.
By default, the manifests (as kustomization or helm chart) are assumed to be located at the root folder of the specified source artifact.
A subfolder can be specified by setting spec.path
.
Parameters for the referenced helm chart or kustomization can be provided either inline, by spec.Values
or as a secret key references, listed
in spec.ValuesFrom
, such as
valuesFrom:
- name: values-secret
# key: valuesKey
The key
attribute is optional; if missing the following default keys will be tried: values
, values.yaml
, values.yml
(in this order),
until one is found in the referenced secret. If multiple secret keys are referenced in spec.valuesFrom
, their contents will be deeply merged onto each other in
the order of appearance. If in addition spec.values
is defined, its content will be merged onto the merged values from spec.valuesFrom
.
The aggregated values object obtained this way will then be passed as parameters to the according KustomizeGenerator
or HelmGenerator
, depending
on whether the source artifacts contains a kustomization or a helm chart.
Parts of the given manifests may be encrypted. Currently, only SOPS is supported as encryption provider.
So spec.decryption.provider
must be set to the value sops
. In that case, a secret reference must be provided, which follows the exact same
logic as used by flux. With the restriction that only GPG and Age are supported as encryption engines.
The rendered manifest may contain bash-style variable references, as defined by the envsubst Go package.
The replacements may be defined either inline in spec.postBuild.substitute
as KEY: VALUE
pairs, or loaded by secret references, where
the keys of the secrets will be interpreted as variable names (and therefore have to be valid bash variable names). If multiple secrets, and
maybe inline substitutions are provided, they will be merged in the usual order (secrets in order of appearance, and then inline content).
As with flux kustomizations, it is possible to declare dependencies between Component
objects, that means, to list other components,
even cross-namespace, in spec.dependencies
. Providing no namespace means that the referenced component is assumed to be in the same
namespace as the depending component. During creation or update, a component will remain in status Pending
until all its dependencies
are in a Ready
state. Other than in the flux case, where dependencies are only evaluated during creation/update, but not for
deletion, component dependencies are honored (in reverse order) also during deletion. That means, if a component which is listed as dependency of one or more other components, is being deleted, then it will go into a DeletionPending
state, until all these depending components are gone.
The operator relies on the flux source controller, which can be installed by running
flux install --components source-controller
The recommended deployment method for the operator itself is to use the Helm chart included in this repository:
helm upgrade -i component-operator oci://ghcr.io/sap/component-operator/charts/component-operator
The API reference can be found here: https://pkg.go.dev/github.com/sap/component-operator.
This project is open to feature requests/suggestions, bug reports etc. via GitHub issues. Contribution and feedback are encouraged and always welcome. For more information about how to contribute, the project structure, as well as additional contribution information, see our Contribution Guidelines.
If you find any bug that may be a security problem, please follow our instructions at in our security policy on how to report it. Please do not create GitHub issues for security-related doubts or problems.
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone. By participating in this project, you agree to abide by its Code of Conduct at all times.
Copyright 2024 SAP SE or an SAP affiliate company and component-operator contributors. Please see our LICENSE for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available via the REUSE tool.