Kubernetes Controllers

This section contains design documents for the Kubernetes controllers that make up the quarks-operator

The quarks-operator watches four different types of custom resources:

The quarks-operator requires the according CRDs to be installed in the cluster in order to work as expected. By default, the quarks-operator applies CRDs in your cluster automatically.

To verify that the CRD´s are installed:

1
2
3
4
5
6
$ kubectl get crds
NAME                                            CREATED AT
boshdeployments.quarks.cloudfoundry.org        2019-06-25T07:08:37Z
quarksjobs.quarks.cloudfoundry.org           2019-06-25T07:08:37Z
quarkssecrets.quarks.cloudfoundry.org        2019-06-25T07:08:37Z
quarksstatefulsets.quarks.cloudfoundry.org   2019-06-25T07:08:37Z

Architecture design

deployment-flow

(Source: https://drive.google.com/file/d/1Uk2h5pOmY-gLtbfpDNO3POTcqI5UdZgj/view?usp=sharing)

Last modified May 25, 2021: Fix code display in release docs (2bc24a5)