Chapter 3. Service Registry quickstart
This chapter explains how to quickly install Service Registry Operator using the OpenShift command line. This quickstart example deploys Service Registry using the embedded Infinispan storage option:
The recommended installation option for production environments is Section 4.1, “Installing Service Registry from the OpenShift OperatorHub”.
The recommended storage option for production environments is AMQ Streams. For details, see Chapter 5, Deploying Service Registry storage in AMQ Streams.
3.1. Quickstart Service Registry Operator installation Copy linkLink copied to clipboard!
You can quickly deploy the Service Registry Operator on the command line, without the Operator Lifecycle Manager, by using a downloaded set of installation files and examples.
Prerequisites
-
You must go to Red Hat Integration Downloads, select the product version, and download the Service Registry CRDs
.zip
file.
Procedure
Create a project for the installation, for example,
service-registry
:oc new-project service-registry
oc new-project service-registry
Copy to Clipboard Copied! Toggle word wrap Toggle overflow -
Set the namespace in
install/cluster_role_binding.yaml
by replacing{NAMESPACE}
withservice-registry
. Apply the files located in the
install/
folder:oc apply -f install/ -n service-registry
oc apply -f install/ -n service-registry
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2. Quickstart Service Registry deployment Copy linkLink copied to clipboard!
To quickly create a new Service Registry deployment, use the embedded Infinispan storage option, which does not require an external storage to be configured as a prerequisite.
Prerequisites
- Ensure that the Service Registry Operator is already installed.
Procedure
Create an
ApicurioRegistry
custom resource (CR) in the same namespace that the Operator is deployed:oc apply -f ./examples/apicurioregistry_infinispan_cr.yaml -n service-registry
oc apply -f ./examples/apicurioregistry_infinispan_cr.yaml -n service-registry
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Example CR for Infinispan storage
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Access the automatically created route for the Service Registry web console. For example:
http://example-apicurioregistry.my-project.my-domain-name.com/
http://example-apicurioregistry.my-project.my-domain-name.com/
Copy to Clipboard Copied! Toggle word wrap Toggle overflow