Installing Apicurio Registry storage on OpenShift
This chapter explains how to install and configure your chosen registry storage option: Strimzi, embedded Infinispan, or PostgreSQL database.
Installing Strimzi from the OpenShift OperatorHub
If you do not already have Strimzi installed, you can install the Strimzi Operator on your OpenShift cluster from the OperatorHub. The OperatorHub is available from the OpenShift Container Platform web console and provides an interface for cluster administrators to discover and install Operators. For more details, see the OpenShift documentation.
-
You must have cluster administrator access to an OpenShift cluster
-
In the OpenShift Container Platform web console, log in using an account with cluster administrator privileges.
-
Change to the OpenShift project in which Apicurio Registry is installed. For example, from the Project drop-down, select
my-project
. -
In the left navigation menu, click Operators > OperatorHub.
-
In the Filter by keyword text box, enter
Strimzi
to find the Strimzi Operator. -
Read the information about the Operator, and click Install to display the Operator subscription page.
-
Select your subscription settings, for example:
-
Update Channel > stable
-
Installation Mode > A specific namespace on the cluster > my-project
-
Approval Strategy > Manual
-
-
Click Install, and wait a few moments until the Operator is ready for use.
Configuring Apicurio Registry with Strimzi storage on OpenShift
This section explains how to configure Kafka-based storage for Apicurio Registry using Strimzi on OpenShift. This storage option is suitable for production environments when persistent
storage is configured for the Kafka cluster on OpenShift. You can install Apicurio Registry in an existing Kafka cluster or create a new Kafka cluster, depending on your environment.
-
You must have an OpenShift cluster with cluster administrator access.
-
You must have already installed Apicurio Registry. See Installing Apicurio Registry on OpenShift.
-
You must have already installed Strimzi. See Installing Strimzi from the OpenShift OperatorHub.
-
In the OpenShift Container Platform web console, log in using an account with cluster administrator privileges.
-
If you do not already have a Kafka cluster configured, create a new Kafka cluster using Strimzi. For example, in the OpenShift OperatorHub:
-
Click Installed Operators > Strimzi.
-
Under Provided APIs > Kafka, click Create Instance to create a new Kafka cluster.
-
Edit the custom resource definition as appropriate, and click Create.
The default example creates a cluster with 3 Zookeeper nodes and 3 Kafka nodes with ephemeral
storage. This temporary storage is suitable for development and testing only, and not for production. For more details, see Using AMQ Streams on OpenShift.
-
-
After the cluster is ready, click Provided APIs > Kafka > my-cluster > YAML.
-
In the
status
block, make a copy of thebootstrapServers
value, which you will use later to deploy Apicurio Registry. For example:status: conditions: ... listeners: - addresses: - host: my-cluster-kafka-bootstrap.my-project.svc port: 9092 bootstrapServers: 'my-cluster-kafka-bootstrap.my-project.svc:9092' type: plain ...
-
Create a Kafka topic to store the Apicurio Registry artifacts:
-
Under Provided APIs > Kafka Topic, click Create topic.
-
Change the default topic name from
my-topic
to the requiredstorage-topic
.
-
-
Create a Kafka topic to store the Apicurio Registry global IDs:
-
Under Provided APIs > Kafka Topic, click Create topic.
-
Change the default topic name from
my-topic
to the requiredglobal-id-topic
.
-
-
Click Installed Operators > Apicurio Registry > ApicurioRegistry > Create ApicurioRegistry.
-
Paste in the following custom resource definition, but use your
bootstrapServers
value that you copied earlier:apiVersion: apicur.io/v1alpha1 kind: ApicurioRegistry metadata: name: example-apicurioregistry spec: configuration: persistence: "streams" streams: bootstrapServers: "my-cluster-kafka-bootstrap.my-project.svc:9092"
-
Click Create and wait for the Apicurio Registry route to be created on OpenShift.
-
Click Networking > Route to access the new route for the Apicurio Registry web console. For example:
http://example-apicurioregistry.my-project.my-domain-name.com/
For more details on installing Strimzi and on creating Kafka clusters and topics, see https://strimzi.io/docs/overview/latest/
Kafka topic name configuration
The default Kafka topic names that Apicurio Registry uses to store data in Kafka are storage-topic
and global-id-topic
. You might be required to change these topic names if you are sharing your Kafka cluster with other applications that already use topics named storage-topic
or global-id-topic
.
You can override the default topic names by setting the appropriate environment variables or Java system properties:
Default topic name | Environment variable | Java system property |
---|---|---|
|
|
|
|
|
|
Configuring Apicurio Registry with embedded Infinispan storage on OpenShift
This section explains how to configure Infinispan cache-based storage for Apicurio Registry on OpenShift. This storage option is based on Infinispan community Java libraries embedded in the Quarkus-based Apicurio Registry server. You do not need to install a separate Infinispan server using this storage option. This option is suitable for development or demonstration only, and is not suitable for production environments.
-
You must have an OpenShift cluster with cluster administrator access.
-
You must have already installed Apicurio Registry. See Installing Apicurio Registry on OpenShift.
-
In the OpenShift Container Platform web console, log in using an account with cluster administrator privileges.
-
Click Installed Operators > Apicurio Registry > ApicurioRegistry > Create ApicurioRegistry.
-
Paste in the following custom resource definition:
apiVersion: apicur.io/v1alpha1 kind: ApicurioRegistry metadata: name: example-apicurioregistry spec: configuration: persistence: "infinispan" infinispan: # Currently uses embedded version of Infinispan clusterName: "example-apicurioregistry" # ^ Optional
-
Click Create and wait for the Apicurio Registry route to be created on OpenShift.
-
Click Networking > Route to access the new route for the Apicurio Registry web console. For example:
http://example-apicurioregistry.my-project.my-domain-name.com/
-
For more details on configuring Infinispan clusters, see the example custom resources available from the Apicurio Registry demonstration.
-
For more details on Infinispan, see https://infinispan.org/
Installing a PostgreSQL database from the OpenShift OperatorHub
If you do not already have a PostgreSQL database Operator installed, you can install a PostgreSQL Operator on your OpenShift cluster from the OperatorHub. The OperatorHub is available from the OpenShift Container Platform web console and provides an interface for cluster administrators to discover and install Operators. For more details, see the OpenShift documentation.
-
You must have cluster administrator access to an OpenShift cluster.
-
In the OpenShift Container Platform web console, log in using an account with cluster administrator privileges.
-
Change to the OpenShift project in which Apicurio Registry is installed. For example, from the Project drop-down, select
my-project
. -
In the left navigation menu, click Operators > OperatorHub.
-
In the Filter by keyword text box, enter
PostgreSQL
to find an Operator suitable for your environment, for example, Crunchy PostgreSQL for OpenShift or PostgreSQL Operator by Dev4Ddevs.com. -
Read the information about the Operator, and click Install to display the Operator subscription page.
-
Select your subscription settings, for example:
-
Update Channel > stable
-
Installation Mode > A specific namespace on the cluster > my-project
-
Approval Strategy > Manual
-
-
Click Install, and wait a few moments until the Operator is ready for use.
You must read the documentation from your chosen PostgreSQL Operator for details on how to create and manage your database.
Configuring Apicurio Registry with PostgreSQL database storage on OpenShift
This section explains how to configure Java Persistence API-based storage for Apicurio Registry on OpenShift using a PostgreSQL database Operator. You can install Apicurio Registry in an existing database or create a new database, depending on your environment. This section shows a simple example using the PostgreSQL Operator by Dev4Ddevs.com.
-
You must have an OpenShift cluster with cluster administrator access.
-
You must have already installed Apicurio Registry. See Installing Apicurio Registry on OpenShift.
-
You must have already installed a PostgreSQL Operator on OpenShift. For example, see Installing a PostgreSQL database from the OpenShift OperatorHub.
-
In the OpenShift Container Platform web console, log in using an account with cluster administrator privileges.
-
Change to the OpenShift project in which Apicurio Registry and your PostgreSQL Operator are installed. For example, from the Project drop-down, select
my-project
. -
Create a PostgreSQL database for your Apicurio Registry storage. For example, click Installed Operators > PostgreSQL Operator by Dev4Ddevs.com > Create database > YAML.
-
Edit the database settings as follows:
-
name
: Change the value toregistry
-
image
: Change the value tocentos/postgresql-10-centos7
-
-
Edit any other database settings as needed depending on your environment, for example:
apiVersion: postgresql.dev4devs.com/v1alpha1 kind: Database metadata: name: registry namespace: my-project spec: databaseCpu: 30m databaseCpuLimit: 60m databaseMemoryLimit: 512Mi databaseMemoryRequest: 128Mi databaseName: example databaseNameKeyEnvVar: POSTGRESQL_DATABASE databasePassword: postgres databasePasswordKeyEnvVar: POSTGRESQL_PASSWORD databaseStorageRequest: 1Gi databaseUser: postgres databaseUserKeyEnvVar: POSTGRESQL_USER image: centos/postgresql-10-centos7 size: 1
-
Click Create Database, and wait until the database is created.
-
Click Installed Operators > Apicurio Registry > ApicurioRegistry > Create ApicurioRegistry.
-
Paste in the following custom resource definition, and edit the values for the database
url
and credentials to match your environment:apiVersion: apicur.io/v1alpha1 kind: ApicurioRegistry metadata: name: example-apicurioregistry spec: configuration: persistence: "jpa" dataSource: url: "jdbc:postgresql://SERVICE_NAME.NAMESPACE.svc:5432/" # e.g. url: "jdbc:postgresql://acid-minimal-cluster.my-project.svc:5432/" userName: "postgres" password: "PASSWORD" # ^ Optional
-
Click Create and wait for the Apicurio Registry route to be created on OpenShift.
-
Click Networking > Route to access the new route for the Apicurio Registry web console. For example:
http://example-apicurioregistry.my-project.my-domain-name.com/