This topic describes how to create and deletes a VMware GemFire cluster in VMware GemFire for Kubernetes.
Once the VMware GemFire Operator is installed (see Install the VMware GemFire Operator), create a GemFire for Kubernetes cluster by using kubectl to apply the Custom Resource Definition (CRD) that describes the cluster. The Custom Resource Definition details the mappings and fields of a GemFire for Kubernetes cluster.
Create a namespace to be used for the GemFire for Kubernetes cluster:
$ kubectl create namespace NAMESPACE-NAME
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace.
This namespace is distinct and separate from the namespace created for the VMware GemFire operator.
Create an image pull secret for your GemFire for Kubernetes cluster’s namespace. Set the user name (USERNAME
) and password (PASSWD
) credentials to values that have permission to access VMware Tanzu Network, as they will be used to acquire the locator and server images from the registry. Create the image pull secret:
$ kubectl create secret docker-registry image-pull-secret --namespace=NAMESPACE-NAME --docker-server=registry.tanzu.vmware.com --docker-username='USERNAME' --docker-password='PASSWD'
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace.
Surround both the USERNAME
and the PASSWD
by single quote marks to ensure that special characters within those values are handled correctly.
If you are using Red Hat OpenShift as your Kubernetes platform, add the required service account within the NAMESPACE-NAME
namespace to the anyuid
Security Context Constraints, such that GemFire for Kubernetes’s containers can be executed as root:
$ oc adm policy add-scc-to-user anyuid -z SERVICE-ACCOUNT-NAME -n NAMESPACE-NAME
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace, and SERVICE-ACCOUNT-NAME
is the is the spec: serviceAccountName
field from the deployment YAML (use default
if empty).
Place the YAML that represents the GemFire for Kubernetes cluster’s CRD into a file. For example, a definition that uses all possible defaults and names the cluster gemfire1
:
apiVersion: gemfire.vmware.com/v1
kind: GemFireCluster
metadata:
name: gemfire1
spec:
image: registry.tanzu.vmware.com/pivotal-gemfire/vmware-gemfire:9.15.0
To create the GemFire for Kubernetes cluster, apply the CRD specified in the file with a command of the form:
kubectl -n NAMESPACE-NAME apply -f CLUSTER-CRD-YAML
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace, and CLUSTER-CRD-YAML
is the file name of the file containing the YAML that represents the GemFire for Kubernetes cluster.
Check the creation status of the GemFire for Kubernetes cluster:
kubectl -n NAMESPACE-NAME get GemFireClusters
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace.
For example, if the NAMESPACE-NAME
is gemfire-cluster
:
$ kubectl -n gemfire-cluster get GemFireClusters
NAME LOCATORS SERVERS
gemfire1 1/1 1/2
The first number identifies how many of the replicas are running. The second number identifies how many replicas are specified. When the quantity running reaches the number of replicas specified for both locators and servers, the GemFire for Kubernetes cluster creation is complete.
If the status ErrImagePull
or ImagePullBackOff
is encountered, verify the registry server and credentials used when creating the image pull secret are correct, the image pull secret was created in the correct namespace, and the VMware Software EULA has been accepted for VMware GemFire
To delete a GemFire for Kubernetes cluster, remove the cluster:
$ kubectl -n NAMESPACE-NAME delete GemFireCluster NAME
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace, and NAME
is the metadata: name
field from the deployment YAML.
Deleting a GemFire for Kubernetes cluster will not remove persistent data associated with the cluster. To remove the persistent data, see Delete Persistent Data.
It is possible to restart a GemFire for Kubernetes cluster after deletion, as long as the persistent data from the original cluster remains.
Note: When restarting a GemFire for Kubernetes cluster, it is important to keep the number of locator and server replicas the same as the number of replicas that were running when the original cluster was deleted. It is safe to scale the number of server replicas only after the cluster is fully running. Scaling of locator replicas is not supported by GemFire for Kubernetes.
To restart a deleted cluster, simply create a GemFire for Kubernetes cluster with the same name and namespace as the original cluster:
kubectl -n NAMESPACE-NAME apply -f CLUSTER-CRD-YAML
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace, and CLUSTER-CRD-YAML
is the file name of the file containing the YAML that represents the GemFire for Kubernetes cluster.
If a GemFire for Kubernetes cluster is restarted with a different number of locator or server replicas, it may not start up successfully:
ConflictingPersistentDataException
.In either case, follow the steps below to recover:
Wait until the pods associated with the cluster have been terminated.
Wait until the following command returns no pods:
$ kubectl -n NAMESPACE-NAME get pods -l app.kubernetes.io/name=NAME
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace, and NAME
is the metadata: name
field from the deployment YAML.
If any of the pods have a status of “Terminating” for over a minute, force-delete the pods using a command like the following:
$ kubectl -n NAMESPACE-NAME delete pod POD-NAME --force --grace-period=0
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace, and POD-NAME
is the name of the pod to force-delete.
Restart the cluster with the correct number of locator and server replicas.
gfsh
(see Work with a VMware GemFire Cluster).show missing-disk-stores
.revoke missing-disk-store --id=c00727d1-d909-4cf8-a0c9-507ee3a9440a
.Verify the cluster is running with the correct number of locator and server replicas.
kubectl -n NAMESPACE-NAME get GemFireClusters
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace.
For example, if the NAMESPACE-NAME
is gemfire-cluster
:
$ kubectl -n gemfire-cluster get GemFireClusters
NAME LOCATORS SERVERS
gemfire1 1/1 2/2
The first number identifies how many of the replicas are running. The second number identifies how many replicas are specified. Wait until the quantity running reaches the number of replicas specified for both locators and servers.
If, after completing all of the above steps, the number of server replicas is increased, the new server pod(s) may enter a CrashLoopBackOff state during startup due to either a ConflictingPersistentDataException
or a RevokedPersistentDataException
in the logs. This is because the persistent data from the previous failed cluster start-up still exists. If this happens, it is necessary to delete the persistent data for the new server pod(s).
For example, suppose there is a GemFire for Kubernetes cluster named gemfire1
in namespace gemfire-cluster
with 1 locator and 3 server replicas. After the cluster is running, the number of server replicas is scaled up to 4. The new pod may enter a CrashLoopBackOff state during startup:
$ kubectl -n gemfire-cluster get pods
NAME READY STATUS RESTARTS AGE
gemfire1-locator-0 1/1 Running 0 4d17h
gemfire1-server-0 1/1 Running 0 4d17h
gemfire1-server-1 1/1 Running 0 4d17h
gemfire1-server-2 1/1 Running 0 4d17h
gemfire1-server-3 0/1 CrashLoopBackOff 9 35m
In this case,
Delete the persistent volume claim for the server which was in a CrashLoopBackOff state only. Its name will look like data-POD-NAME
, where POD-NAME
is the name of the pod using the persistent volume claim. In the example above, the command to delete the persistent volume claim would look like:
$ kubectl -n gemfire-cluster delete persistentvolumeclaim data-gemfire1-server-3
After the persistent volume claim is deleted, scale the server replicas back up. (Scale up to 4 in the previous example.)
To remove a GemFire for Kubernetes cluster’s persistent data, delete the persistent volume claims associated with the GemFire for Kubernetes cluster. Persistent volume claims are disk claims that Kubernetes makes on the underlying system.
Obtain a list of the persistent volume claims for the locators and servers:
$ kubectl -n NAMESPACE-NAME get persistentvolumeclaims -l gemfire.vmware.com/app=NAME-locator
$ kubectl -n NAMESPACE-NAME get persistentvolumeclaims -l gemfire.vmware.com/app=NAME-server
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace, and NAME
is the metadata: name
field from the deployment YAML.
For each persistent volume claim listed, delete it:
$ kubectl -n NAMESPACE-NAME delete persistentvolumeclaim PVC_NAME
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace.
The optional creation of a Kubernetes LoadBalancer service permits GemFire for Kubernetes cluster access. Each of these two types of cluster access would have its own LoadBalancer service.
Allow cluster access to execute gfsh
commands through the use of the GemFire for Kubernetes Management API. See Executing gfsh Commands through the Management API in the VMware GemFire documentation. Permits gfsh
access to the GemFire for Kubernetes cluster from outside the Kubernetes cluster.
The VMware GemFire Developer REST API permits GemFire for Kubernetes cluster data access. For more information about the VMware GemFire Developer REST API, see VMware GemFire REST API Overview in the VMware GemFire documentation.
Some cloud providers assign a public IP address to a LoadBalancer service, which will expose the GemFire for Kubernetes cluster to the internet. Understand the security risks before creating a LoadBalancer service.
Once the GemFire for Kubernetes cluster has been created, a LoadBalancer service for the GemFire for Kubernetes Management API may be created.
Place the following YAML configuration in a file:
apiVersion: v1
kind: Service
metadata:
name: LB-SVC-MGMT-API
spec:
selector:
gemfire.vmware.com/app: NAME-locator
ports:
- name: management
port: 7070
targetPort: 7070
sessionAffinity: ClientIP
sessionAffinityConfig:
clientIP:
timeoutSeconds: 10800
type: LoadBalancer
where LB-SVC-MGMT-API
is your chosen name for the LoadBalancer service. The chosen name must follow the syntax rules for a DNS name. NAME
is the metadata: name
field from the GemFire for Kubernetes cluster’s deployment YAML.
Create the LoadBalancer service by applying this configuration to the Kubernetes cluster with a command of the form:
kubectl -n NAMESPACE-NAME apply -f YAML-FILE-NAME
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace, and YAML-FILE-NAME
is your YAML configuration’s file name.
Create a GemFire for Kubernetes cluster that has the Developer REST API enabled. The Developer REST API is enabled by including a GemFire for Kubernetes property for servers in the CRD YAML:
overrides:
gemFireProperties:
- name : "start-dev-rest-api"
value : "true"
Once the GemFire for Kubernetes cluster has been created, a LoadBalancer service for the GemFire for Kubernetes Developer API may be created.
Place the following YAML configuration in a file:
apiVersion: v1
kind: Service
metadata:
name: LB-SVC-DEV-API
spec:
selector:
gemfire.vmware.com/app: NAME-server
ports:
- name: rest-api
port: 7070
targetPort: 7070
type: LoadBalancer
where LB-SVC-DEV-API
is your chosen name for the LoadBalancer service. The chosen name must follow the syntax rules for a DNS name. NAME
is the metadata: name
field from the GemFire for Kubernetes cluster’s deployment YAML.
Create the LoadBalancer service by applying this configuration to the Kubernetes cluster with a command of the form:
kubectl -n NAMESPACE-NAME apply -f YAML-FILE-NAME
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace, and YAML-FILE-NAME
is your YAML configuration’s file name.
To delete LoadBalancer services:
Identify the services with a command of the form:
kubectl -n NAMESPACE-NAME get services
where NAMESPACE-NAME
is your chosen name for the GemFire for Kubernetes cluster namespace.
For each listed LoadBalancer service, delete it with a command of the form:
kubectl -n NAMESPACE-NAME delete service LB-SVC-NAME
where LB-SVC-NAME
is the name
field from the service’s configuration YAML.