Quarkus for Architects who Sometimes Write Code - Being Persistent - Part 01

7 minute read

Note: This is part one of a three part post. In this post we’re going to set up a Cassandra persistence engine on OpenShift. We’ll be using Stargate as the API interface to Cassandra.

We’re going to use the K8ssandra Operator to manage our cassandra cluster.

Check out the project here:

In the next post we’ll get an introduction to the Stargate API, then we’ll create a Quarkus micro-service to store and retrieve data with Cassandra and Stargate.

I have created this tutorial so that you can do everything in OpenShift Local, formerly known as Code Ready Containers.

Install & Configure OpenShift Local

The first step, is to install OpenShift Local if you don’t already have it.

  1. Go To: https://developers.redhat.com/products/openshift/overview

    Install OpenShift Local

  2. Select Install Red Hat OpenShift on your laptop

    This will take you to a login page. If you don’t have a Red Hat developer account you will register for one here. It’s free and you’ll get access to a lot of ebooks, guides, and tools.

  3. From the landing page after you log in, you will need to download two things:

    1. Download the OpenShift Local installation package for your OS and architecture

    2. Download your pull secret. This will give you access to all of the Operators in the Red Hat operator catalog.

    Download OpenShift Local

  4. Install OpenShift Local with the installation package that you downloaded.

  5. Open a terminal and prepare your workstation to run the cluster:

    crc setup
    

    Note: This will take a while. OpenShift Local will first download the latest cluster bundle, decompress it, and set up your system to run the cluster.

  6. Configure your OpenShift Local cluster: Note: You need at least 16GB of RAM on your workstation. We’re going to configure the OpenShift machine with 12GB.

    crc config set memory 12288
    crc config set disk-size=100
    
  7. Start the cluster:

    crc start
    

    Note: You will be prompted for your Pull Secret here. Copy and paste it into the terminal when prompted.

    INFO Checking if running as non-root              
    INFO Checking if crc-admin-helper executable is cached 
    INFO Checking for obsolete admin-helper executable 
    INFO Checking if running on a supported CPU architecture 
    INFO Checking minimum RAM requirements            
    INFO Checking if crc executable symlink exists    
    INFO Checking if running emulated on a M1 CPU     
    INFO Checking if vfkit is installed               
    INFO Checking if old launchd config for tray and/or daemon exists 
    INFO Checking if crc daemon plist file is present and loaded 
    INFO Loading bundle: crc_vfkit_4.11.3_arm64...    
    CRC requires a pull secret to download content from Red Hat.
    You can copy it from the Pull Secret section of https://console.redhat.com/openshift/create/local.
    ? Please enter the pull secret 
    
  8. Paste your pull secret in the terminal and hit return / Enter

    Note: You only have to enter the pull secret once. Unless you run crc cleanup, it will be persisted with your install.

  9. Wait for the cluster to start. This will take a while the first time.

    INFO All operators are available. Ensuring stability... 
    INFO Operators are stable (2/3)...                
    INFO Operators are stable (3/3)...                
    INFO Adding crc-admin and crc-developer contexts to kubeconfig... 
    Started the OpenShift cluster.
    
    The server is accessible via web console at:
      https://console-openshift-console.apps-crc.testing
    
    Log in as administrator:
      Username: kubeadmin
      Password: JY2pF-sELmn-oc9R3-YYb6K
    
    Log in as user:
      Username: developer
      Password: developer
    
    Use the 'oc' command line interface:
      $ eval $(crc oc-env)
      $ oc login -u developer https://api.crc.testing:6443
    
  10. Set your environment to interact with the running cluster:

    eval $(crc oc-env)
    

    Note: If you ever need to retrieve the credentials to log in, run the following:

    crc console --credentials
    

    The output will show you how to login with the two pre-configured users:

    To login as a regular user, run 'oc login -u developer -p developer https://api.crc.testing:6443'.
    To login as an admin, run 'oc login -u kubeadmin -p FkIy7-LFYXG-PvYFZ-Ppp2G https://api.crc.testing:6443'
    
  11. Log into the cluster:

    oc login -u kubeadmin -p <The Password For kubeadmin> https://api.crc.testing:6443
    
  12. Launch the web console:

    crc console
    

    This will open your default browser at the OpenShift web console login page:

    Install OpenShift Local

  13. Login as the kubeadmin user with the same password as above:

    Install OpenShift Local

  14. You should now see the OpenShift console landing page:

    Install OpenShift Local

We’ll be using the CLI from the terminal to perform all of the next steps, but we’ll use the web console to verify that everything is running.

Install Cassandra and Stargate

Now we are going to install the k8ssandra operator. I have prepared all of the images that you will need and placed them in my Quay.io account: https://quay.io/user/cgruver0

Note: I’m using my personal Quay.io account for two reasons:

  1. Some of the images needed by k8ssandra are in Docker.io. If things don’t run smoothly during the install, you will encounter the Docker pull rate limitations. Unless you have a paid Docker account, this will slow you down.

  2. Some of you may be running on Apple silicon like I am. I prepared this whole tutorial on my M2 MacBook air.

    Well… The k8ssandra operator does not officially support ARM64 cpu architecture. So, I built ARM64 images for all of the containers that we’ll be using.

    The build instructions for creating the multi-arch container images and associated manifests can be found here:

    https://github.com/cgruver/k8ssandra-blog-resources/blob/main/README.md

Setup your workstation for the K8ssandra Install

  1. You need to install kustomize if you don’t already have it:

    https://kubectl.docs.kubernetes.io/installation/kustomize/

  2. Set an environment variable: (Note: I am following the same conventions as in the previous posts)

    export K8SSANDRA_WORKDIR=${HOME}/okd-lab/quarkus-projects/k8ssandra-work-dir
    
  3. Clone the helper repo that I created for you:

    mkdir -p ${K8SSANDRA_WORKDIR}
    git clone https://github.com/cgruver/k8ssandra-blog-resources.git ${K8SSANDRA_WORKDIR}/k8ssandra-blog-resources
    
  4. Set the environment for the install

    . ${K8SSANDRA_WORKDIR}/k8ssandra-blog-resources/versions.sh
    export PULL_REGISTRY="quay.io/cgruver0"
    

Install Cert Manager

K8ssandra uses cert-manager to manager TLS certificates for the cassandra ecosystem.

Check out the project here:

  1. Create a directory for temporary resources:

    mkdir -p ${K8SSANDRA_WORKDIR}/tmp
    
  2. Download the manifest for installing cert-manager:

    wget -O ${K8SSANDRA_WORKDIR}/tmp/cert-manager.yaml https://github.com/jetstack/cert-manager/releases/download/${CERT_MGR_VER}/cert-manager.yaml
    
  3. Prepare the kustomize manifest that I created for you:

    envsubst < ${K8SSANDRA_WORKDIR}/k8ssandra-blog-resources/kustomize/cert-manager-kustomization.yaml > ${K8SSANDRA_WORKDIR}/tmp/kustomization.yaml
    
  4. Install Cert Manager:

    kustomize build ${K8SSANDRA_WORKDIR}/tmp | oc create -f -
    
  5. Verify the cert manager pods:

    1. Go to the web console and select workloads -> pods from the left had navigation menu:

      Install OpenShift Local

    2. Filter on the cert-manager project:

      Install OpenShift Local

    3. Note the running state of the three cert-manager pods:

      Install OpenShift Local

Install K8ssandra Operator

  1. Prepare the kustomize manifest that I created for you:

    envsubst < ${K8SSANDRA_WORKDIR}/k8ssandra-blog-resources/kustomize/k8ssandra-kustomization.yaml > ${K8SSANDRA_WORKDIR}/tmp/kustomization.yaml
    
  2. Install the K8ssandra Operator

    kustomize build ${K8SSANDRA_WORKDIR}/tmp | oc create -f -
    
  3. Patch the k8ssandra-operator RBAC role to work in OpenShift:

    oc -n k8ssandra-operator patch role k8ssandra-operator --type=json -p='[{"op": "add", "path": "/rules/-", "value": {"apiGroups": [""],"resources": ["endpoints/restricted"],"verbs": ["create"]} }]'
    
  4. Grant anyuid to the default service account in the k8ssandra-operator namespace:

    The Cassandra pods run with the default service account. They will need to run as a specific UID, and need increased privileges:

    oc -n k8ssandra-operator adm policy add-scc-to-user anyuid -z default 
    

Configure the K8ssandra Operator

  1. Stop the two k8ssandra pods:

    oc -n k8ssandra-operator scale deployment cass-operator-controller-manager --replicas=0
    oc -n k8ssandra-operator scale deployment k8ssandra-operator --replicas=0
    
  2. Patch the Cass Operator configuration:

    oc -n k8ssandra-operator patch configmap cass-operator-manager-config --patch="$(envsubst < ${K8SSANDRA_WORKDIR}/k8ssandra-blog-resources/manifests/cass-config-patch.yaml)"
    
  3. Start the k8ssandra operator pods back up:

    oc -n k8ssandra-operator scale deployment cass-operator-controller-manager --replicas=1
    oc -n k8ssandra-operator scale deployment k8ssandra-operator --replicas=1
    
  4. Verify that the operator pods are running:

    1. Go back to the web console and select Workloads -> Pods and filter on the k8ssandra-operator project:

      Install OpenShift Local

    2. Note the running state of the two operator pods:

      Install OpenShift Local

Deploy Cluster

Now, deploy a single-node Cassandra cluster:

envsubst < ${K8SSANDRA_WORKDIR}/k8ssandra-blog-resources/manifests/k8ssandra-cluster.yaml | oc -n k8ssandra-operator apply -f -

This will take a while to start up.

  1. The cass operator will deploy a StatefulSet for the new cluster:

    Install OpenShift Local

  2. It will take a while for the cluster to provision:

    Install OpenShift Local

  3. After the Cassandra instance is running, the operator will deploy Stargate:

    Install OpenShift Local

  4. All of the pods should be in a running and ready state when complete:

    Install OpenShift Local

Expose Stargate Services

The final step is to expose the Stargate services as external Routes so that we can access the cassandra cluster with curl or Postman:

oc -n k8ssandra-operator create route edge sg-graphql --service=k8ssandra-cluster-dc1-stargate-service --port=8080
oc -n k8ssandra-operator create route edge sg-auth --service=k8ssandra-cluster-dc1-stargate-service --port=8081
oc -n k8ssandra-operator create route edge sg-rest --service=k8ssandra-cluster-dc1-stargate-service --port=8082

That’s it for this post. In the next post we’ll get an introduction to the Stargate API, then we’ll use this Cassandra cluster as the persistent backend for a Quarkus micro-service.

If you want to read ahead and start playing with this Cassandra cluster, check out the documentation here:

https://docs.datastax.com/en/astra-serverless/docs/quickstart/qs-document.html

https://docs.datastax.com/en/astra-serverless/docs/develop/tooling.html#postman-resources

When you are done with your cluster, you can stop it gracefully from a terminal window:

crc stop

When you are ready to use it again, simply restart it:

crc start

Note that it will take a while for the Cassandra cluster to restart and verify itself.

Cheers!

Updated: