Deploying a NiFi Registry instance

Learn about deploying a NiFi Registry cluster using CFM Operator.

You can deploy a NiFi Registry cluster by creating a NiFi Registry custom resource (CR) and deploying it to the Kubernetes cluster.

  • Ensure the CCFM Operator has been installed and is running.

  • You have created a NiFi Registry custom resource (CR) YAML file that complies with the documentation provided by Cloudera.

  1. Create NiFi Registry cluster namespace if it does not exist.
    kubectl create namespace [***REGISTRY NAMESPACE***]

    Replace [***REGISTRY NAMESPACE***] with your desired namespace.

  2. Apply your NiFi Registry CR to the Kubernetes cluster.
    kubectl apply -f [***REGISTRY YAML PATH***] \
    --namespace [***REGISTRY NAMESPACE***]

    Replace:

    • [***REGISTRY YAML PATH***] with the absolute or relative path to the NiFi Registry yaml.

    • [***REGISTRY NAMESPACE***] with your desired namespace.