This guide assumes that the VMware GemFire Operator and a cert-manager have been installed in your Kubernetes cluster.
In order to create a GemFire cluster, you will need a Broadcom Support Portal account, in order to pull the GemFire image from the registry.
You will also need permission to use kubectl.
kubectl
Verify that you are in the Kubernetes cluster you want to use for VMware GemFire
kubectl config current-context
gemfire-cluster
kubectl create namespace gemfire-cluster
$ kubectl create secret docker-registry image-pull-secret --namespace=gemfire-cluster --docker-server=registry.tanzu.vmware.com --docker-username='BROADCOM SUPPORT EMAIL' --docker-password='BROADCOM SUPPORT ACCESS TOKEN'
--namepsace=gemfire-cluster
--docker-username='BROADCOM SUPPORT EMAIL'
--docker-password='BROADCOM SUPPORT ACCESS TOKEN'
4. Create your VMware GemFire CRD file.
Below is a simple yaml file that will create a VMware GemFire cluster named hello-world-gemfire-cluster with 1 locator and 2 servers, with TLS turned off. Save this as a YAML file in your current working directory.
hello-world-gemfire-cluster
apiVersion: gemfire.vmware.com/v1 kind: GemFireCluster metadata: name: hello-world-gemfire-cluster spec: image: registry.packages.broadcom.com/pivotal-gemfire/vmware-gemfire:9.15.12 security: tls: {}
For the full list of GemFire CRD configuration options and explanations check out the VMware GemFire Customer Resource Definition template
5. Apply your VMware GemFire CRD YAML from Step 4 to create the VMware GemFire cluster
kubectl -n gemfire-cluster apply -f CLUSTER-CRD-YAML
-n gemfire-cluster
CLUSTER-CRD-YAML
6. If successful you should see in your terminal
gemfirecluster.gemfire.vmware.com/hello-world-gemfire-cluster created
7. Confirm that VMware GemFire is up and ready to use
kubectl -n gemfire-cluster get GemFireClusters
NAME LOCATORS SERVERS CLUSTER IMAGE OPERATOR VERSION hello-world-gemfire-cluster 1/1 2/2 registry.packages.broadcom.com/pivotal-gemfire/vmware-gemfire:9.15.12 2.0.0-build.73
NAME
name
This section will guide you through testing a Hello, World! client application, that utilizes Spring Boot for VMware GemFire.
Hello, World!
Clone the Hello, World! app from the examples repo.
$ git clone https://github.com/gemfire/spring-for-gemfire-examples.git
2. Edit the gradle.properties File
gradle.properties
spring-for-gemfire-examples/hello-world
gemfireRepoUsername=
gemfireRepoPassword
application.properties
Navigate to the spring-for-gemfire-examples/hello-world directory
Open the application.properties in src/main/resources
Uncomment the two listed properties
Replace the value for spring.data.gemfire.pool.locators: with your VMware GemFire cluster information, for each locator (in this example we only have one locator). The information will follow the form:
spring.data.gemfire.pool.locators:
[GEMFIRE-CLUSTER-NAME]-locator-[LOCATOR-NUMBER].[GEMFIRE-CLUSTER-NAME]-locator.[NAMESPACE-NAME].svc.cluster.local[10334]
spring.data.gemfire.pool.locators: hello-world-gemfire-cluster-locator-0.hello-world-gemfire-cluster-locator.gemfire-cluster.svc.cluster.local[10334]
spring.data.gemfire.management.http.host:
[GEMFIRE-CLUSTER-NAME]-locator-[LOCATOR-NUMBER].[GEMFIRE-CLUSTER-NAME]-locator.[NAMESPACE-NAME].svc.cluster.local
spring.data.gemfire.management.http.host: hello-world-gemfire-cluster-locator-0.hello-world-gemfire-cluster-locator.gemfire-cluster.svc.cluster.local
Starting with Spring Boot 2.3, you can now customize and create an OCI image using Spring Boot. In this example we’re using the Gradle - packaging OCI images option. If you are using Maven check out the instructions found here.
hello-world
./gradlew clean build
build.gradle
bootBuildImage
docker.io/[docker username]/hello-world:0.0.1-SNAPSHOT
./gradlew bootBuildImage
For this example, we’re using Docker Hub as our registry. This will create a repository on Docker Hub called hello-world and push the image we created into that repository.
In a terminal
Login to your Docker account
Run the docker push [IMAGE NAME HERE]. For this example it should be similar to this
docker push [IMAGE NAME HERE]
docker push docker.io/[YOUR DOCKER USERNAME]/hello-world:0.0.1-SNAPSHOT
Create a Kubernetes deployment for your Hello, World! app. This will create a deployment, replicaset, and pod using the hello-world image we created above.
kubectl -n gemfire-cluster create deployment hello-world-deployment --image=docker.io/[YOUR DOCKER USERNAME]/hello-world:0.0.1-SNAPSHOT
deployment.apps/hello-world-deployment created
In order to access Hello, World! app from a browser, we need to expose the deployment.
kubectl -n gemfire-cluster expose deployment/hello-world-deployment --type="LoadBalancer" --port=80 --target-port=8080
LoadBalancer
NodePort
Once the Load Balancer has been created, you can now access the Hello, World! application using the External IP on the LoadBalancer service.
External IP
kubectl -n gemfire-cluster get services
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE hello-world-deployment LoadBalancer 10.0.227.199 20.62.226.18 80:31350/TCP 57s hello-world-gemfire-cluster-locator ClusterIP None <none> 10334/TCP,4321/TCP 132m hello-world-gemfire-cluster-server ClusterIP None <none> 40404/TCP,4321/TCP 131m
EXTERNAL-IP
hello-world-deployment
You should see something similar to this, which represents an artificial time delay simulating a database query.
key: hello
value: 2019-10-01T16:17:51.557 (this will be your current date & time)
time to look up: 3057ms (quantity of time that it took to acquire the key-value pair).
Refresh the page and you should see something similar to
time to look up: 6ms (quantity of time that it took to acquire the key-value pair).
Note that the time to look up has been significantly reduced. This represents the app getting the information from the cache, VMware GemFire, instead of querying the database.
If you would like to confirm that your Hello World! app is connected to your VMware GemFire cluster you can connect through the VMware GemFire shell - commonly referred to as gfsh
Start gfsh for kubernetes
kubectl -n gemfire-cluster exec -it hello-world-gemfire-cluster-locator-0 -- gfsh
Once you see that GFSH has started, connect to your cluster with the connect command
GFSH
connect
connect --locator=hello-world-gemfire-cluster-locator-0.hello-world-gemfire-cluster-locator.gemfire-cluster.svc.cluster.local[10334]
Once connected run the list regions comman
list regions
You should see something similar to
List of regions ------------------ Hello
Confirm the web page timestamp has the same value as that stored in your Hello region. Run the gfsh command
get --key hello --region=/Hello
You should see something similar to this, where the “Value” listed in your terminal should match the “value” shown on the web page.
Result : true Key Class : java.lang.String Key : hello Value Class : java.lang.String Value : "2022-11-17T19:22:30.894"
key: hello value: 2022-11-17T19:22:30.894 time to look up: 2ms
This will remove the Hello, World! deployment, replicaset, and pod.
kubectl -n gemfire-cluster delete deployment hello-world-deployment
This will remove the Hello, World! service.
kubectl -n gemfire-cluster delete service hello-world-deployment
If you need to delete your VMware GemFire cluster, first remove the cluster
kubectl -n gemfire-cluster delete GemFireCluster hello-world-gemfire-cluster
When the VMware GemFire cluster has been completely deleted, remove the persistent volume claims of the Kubernetes cluster. These are disk claims that Kubernetes makes on the underlying system.
kubectl -n gemfire-cluster get persistentvolumeclaims
To delete all the persistent volume claim listed, run the following command
kubectl delete pvc -n gemfire-cluster --all
To prevent this message from showing again, please enable pop-up blockers for support.broadcom.com or click Continue to proceed.