hegessne / cmcc-operator

Kubernetes Operator to bring up a CoreMedia Content Cloud installation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kubernetes Operator for CoreMedia Content Cloud

build

Introduction

Kubernetes Operators are specialized software packages that help manage applications and resources in a k8s cluster. This operator will create, initialize and run a CoreMedia Content Cloud application. A custom resource definition is used to define all relevant parameters.

Features

The operator:

  • manages the creation and updating of all the Kubernetes resources required to run CoreMedia Content Cloud. Care has been taken to have sensible defaults for all parameters wherever possible.
  • can create a fresh installation from scratch, creating MariaDB and MongoDB database servers, and initialize the necessary database schemas and secrets, suitable for a development environment. For production, persistence should be provided, for example by using cloud services, or using other operators to provision databases.
  • can deploy against existing databases, using pre-existing secrets provided.
  • can use a custom resource definition or a config map to supply the values. This makes it possible to use the operator even on clusters where you cannot install cluster-wide resources.
  • deploys the CoreMedia Content Cloud components step by step. This ensures that components that require other components are only started when the dependencies have been initialized successfully.
  • imports test users and contents initially.
  • run additional jobs, for example to re-import content into a running installation.
  • configures the live CAE deployment with the desired number of replicas.
  • builds ingresses automatically from CAE site mappings.
  • creates random passwords for all components and configures the components to use them (MariaDB, MongoDB, and UAPI/Corba).
  • configures Solr clustering by specifying the number of replicas to create.

Planned features include:

  • Creating a scalable delivery stage automatically by simply providing the number of Replication Live Servers.
  • Support for Traefik ingress controller and its resource types (in addition to the kubernetes/ingress-nginx).
  • Admission webhook that verifies consistency of the custom resource, and can migrate between CRD versions.

Quick Links

Preparing Your Cluster and Installing the Operator

In order to use the operator, your Kubernetes cluster needs to be prepared. You can then install the operator, and create a CoreMedia Content Cloud installation through the operator.

Preparing the Kubernetes Cluster

Ingress Controller

In order for the CoreMedia installation to be accessible from outside the cluster, an Ingress Controller needs to be configured. The operator currently only supports the generation of Ingress resources for the Ingress NGINX controller. Follow the instructions there to install the ingress controller, or use Helm:

helm upgrade --install ingress-nginx ingress-nginx \
  --repo https://kubernetes.github.io/ingress-nginx \
  --namespace ingress-nginx --create-namespace --set controller.ingressClassResource.default=true

Your cluster will need to have a load balancer available, so the ingress controller can be reached. Please refer to your cluster documentation for more information.

Required DNS Names

In order for users to be able to access the CoreMedia websites, you will need to provide DNS names (ingress hostnames) and have them point at the ingress controllers IP address.

If you don't have a domain handy for a development setup, for example on your local machine, you can use a DNS service like nip.io or sslip.io. This allows you to configure defaults.ingressDomain: 127.0.0.1.nip.io.

All host names are built from three components: the defaults.namePrefix, the component name/site mapping name, and the defaults.ingressDomain. See below for Site Mappings. Examples:

namePrefix component/site ingressDomain Resulting URL
overview 127.0.0.1.nip.io https://overview.127.0.0.1.nip.io
studio 127.0.0.1.nip.io https://studio.127.0.0.1.nip.io
corporate 127.0.0.1.nip.io https://corporate.127.0.0.1.nip.io
dev overview k8s.example.com https://dev-overview.k8s.example.com
dev studio k8s.example.com https://dev-studio.k8s.example.com
dev corporate k8s.example.com https://dev-corporate.k8s.example.com

Using Docker Desktop

If you're using Docker Desktop on macOS or Windows, you can have exactly one service bind to localhost port 80 and 443. Installing the ingress controller should bind to those ports, and ingresses will be available through localhost on your host machine. Make sure that no other Docker container is using these ports.

Using k3d

If you're using k3d as a cluster, your Docker install will need to expose the ingress controller.

Installing the Operator

Installing the Operator Using the Helm Chart

The Helm chart cmcc-operator can be used to install and configure the operator.

$ helm repo add cmcc-operator https://t-systems-mms.github.io/cmcc-operator/
$ helm upgrade --install --create-namespace --namespace cmcc-operator cmcc-operator charts/cmcc-operator

Installing the Operator Manually

Alternatively, you can use the example Kubernetes resource definitions in k8s/:

kubectl apply -f k8s/cmcc-crd.yaml
kubectl apply -f k8s/cmcc-operator.yaml

or for the impatient:

kubectl apply -f https://raw.githubusercontent.com/T-Systems-MMS/cmcc-operator/main/k8s/cmcc-crd.yaml -f https://raw.githubusercontent.com/T-Systems-MMS/cmcc-operator/main/k8s/cmcc-operator.yaml

Using the Custom Resource Definition

You need to add the Custom Resource Definition CoreMediaContentClouds (or cmcc for short) to the cluster, and create a number of objects for the operator: a ClusterRole, a ClusterRoleMapping, a ServiceAccount, and a Deployment for the operator. An example can be found in k8s/cmcc-operator.yaml.

Using a Config Map

If installing the custom resource definition is not an option for you, you can install the operator and have it act on ConfigMaps. The operator can work on ConfigMaps in any namespace (if the role allows it), or can be limited to a single namespace.

When installing the Operator, you need to set the Spring Boot property cmcc.useConfigMap to true, and cmcc.useCrd to false. You can set these in the Helm chart, for example with --set cmcc.useConfigMap=true.

If you're installing the operator manually, you will need to set the environment variables CMCC_USECONFIGMAP and CMCC_USECRD on the deployment for the operator.

Configuring the Operator

The operator has a number of configuration parameters that can be set using the usual Spring Boot ways: as an application.properties or application.yaml file, or using environment variables. The following properties can be configured:

Property Environment Default Description
cmcc.ingressbuilder CMCC_INGRESSBUILDER blueprint The ingress builder to use. See site mappings
cmcc.useConfigMap CMCC_USECONFIGMAP false Use the ConfigMap reconciler (see Using a Config Map)
cmcc.useCrd CMCC_USECRD true Use the Custom Resource reconciler

Using the Operator

Pull Secret

Depending on you cluster setup and whether you're using a custom registry, you will likely need a pull secret for the pods to be able to pull their images. The operator relies on the default service account having the necessary pull secrets configured for the namespace the CoreMedia installation will be created in.

License Files

In order for the Content Server components to work they need license files. Create a secret each for the three types of Content Server with the contents of the license.zip like so:

kubectl create secret generic license-cms --from-file=license.zip=license/cms-license.zip 

The license secrets need to be created in the same namespace you plan to install CoreMedia in. See licenseSecrets, below.

Creating a CoreMedia Installation – Helm Chart

The Helm chart cmcc can be used to create a deployment for CoreMedia Content Cloud. See the documentation there for information on how to supply the necessary values to Helm.

$ helm repo add cmcc-operator https://t-systems-mms.github.io/cmcc-operator/
$ helm upgrade --install my-release cmcc-operator/cmcc --values my-values.yaml

Creating a CoreMedia Installation – Custom Resource

You can create a complete CoreMedia installation by creating the custom resource CoreMediaContentClouds with the desired properties. An example can be found in k8s/example.yaml, and can be created in the cluster like this:

kubectl apply -f k8s/example.yaml

docs/custom-resource.md describes all available properties of the CoreMediaContentClouds custom resource.

After the resource has been created, you can monitor the status:

$ kubectl get CoreMediaContentClouds
NAME     MILESTONE
obiwan   Created

See below for the different milestones and their meaning.

Creating a CoreMedia Installation – ConfigMap

If you have enabled using a ConfigMap instead (or in addition to) the custom resource, you need to create a ConfigMap that maps the custom resource properties spec and status to data entries, and has a label "cmcc.tsystemsmms.com.customresource": "cmcc". See the example-config.yaml.

The status display is slightly more complicated, you will need a custom client or script to extract the milestone from the ConfigMap status entry, and patching the job entry likewise requires editing the entire spec entry of the ConfigMap. However, the operation is otherwise the same as with the custom resource.

Deleting the CoreMedia Installation

To have the operator remove all components, including the databases and their PVCs, simply delete the custom resource:

kubectl delete CoreMediaContentClouds example

Depending on your cluster, the deletion might take a minute.

Building The Operator

You build the Docker image for the Operator and load it into your local Docker with this command:

./gradlew build jibDockerBuild

You can use ./gradlew jib to build and push the image to a Docker registry. See the documentation for Job Gradle Plugin.

About

Kubernetes Operator to bring up a CoreMedia Content Cloud installation

License:Apache License 2.0


Languages

Language:Java 98.1%Language:Smarty 1.0%Language:HTML 0.7%Language:CSS 0.2%