# The Entando Operator

The Entando Operator processes the custom resources in Kubernetes that represent the different components of an Entando application. The goal of the Operator is to provide automation and a set of default configuration options to simplify and accelerate the deployment of an Entando application.

The sections below provide details regarding the Operator when Entando Custom Resources are deployed. If you're using OpenShift, these sections provide details on how to configure your deployment via the Operator Hub.

For details on the individual custom resource definitions (CRD), check out the custom resources document. See the instructions on deploying via the Entando Operator.

# TLS Secret Creation

When configuring and deploying Entando via the Operator, you will be asked to provide a secret for some of the components in the architecture. A few things to be aware of when creating and configuring a Secret:

  • The Secret is assumed to be in the same namespace as the component being created.
  • This Secret is expected to have a private key, and a certificate for the hostname (or a wildcard certificate) that the service will be exposed on.
  • Refer to the ingressHostName property in the custom resource for more information on how the hostname is determined.
  • If a Secret isn't provided, the Entando Operator will evaluate the value of the ENTANDO_PATH_TO_TLS_KEYPAIR, which is expected to contain two files: tls.key and tls.crt.
    • If a key pair is found in the folder specified, the Operator will use that key pair.
    • If a key pair is not found, the Entando Operator will evaluate the value of the ENTANDO_USE_AUTO_CERT_GENERATION. If that property is set to true, the Operator will assume that the cluster has been configured with a valid Certificate Authority (CA) and leave it to the Ingress controller to generate its own certificates.

Click here for instructions on setting up TLS for the EntandoApp.

# Database Deployment

Some Entando components include the option to select a database management system (DBMS):

  • The value of the DBMS field in the CRD can be mysql, oracle, postgresql, or embedded.

    • IMPORTANT! -- If embedded is selected for a component, only one replica for the component can be created. This is not recommended for production use.
    • IMPORTANT! -- Oracle instances are not supported for automatic deployment in a container. You must create your own Oracle instance or reuse an existing instance and then configure the external database for your EntandoApp.
  • If an EntandoDatabaseService has been deployed in the component's namespace and the DBMS specified for this is the same as the DBMS specified for the EntandoApp, then the Operator will create dedicated schemas (in the case of PostgreSQL or Oracle), or databases (in the case of MySQL).

    • If a matching EntandoDatabaseService does not exist in this namespace, the Operator will automatically deploy the appropriate container to host the DBMS specified. This last option is not yet supported for Oracle.
  • For an EntandoApp, three schemas/databases will be created: the Entando Port DB, Entando Serv DB and a database for the Entando Component Manager.

    • If the Port and Serv schemas/databases are empty, the Operator will use the underlying EntandoApp to populate these databases with the data backup available in the standard backup path in the WAR deployment.
    • In cases where the EntandoApp needs to connect to an existing database that is fully managed by the customer, it is best to setup the standard database connection variables using the spec.environmentVariables property, set to 'none'. This will skip any database preparation steps in the deployment.

When deploying a component, the Operator will evaluate the spec, and if it supports the standard spec.dbms property, the value of this property will be given to the component's spec.dbms. Please consult the documentation for each component's CRD to determine how the Entando resource uses the DBMS (if any).

# Ingress Path Generation

When deploying an Entando Custom Resource that uses an Ingress path:

  • The ingressHostName property defines the host path that will be used to access this service from outside the cluster. The Entando Operator will create an ingress with this hostname and expose the resource at its default path.