I have a 3 node Kubernetes cluster and I have set up Cassandra on it using Cass-Operator. I am following the instructions from here - https://github.com/datastax/cass-operator
What does the 2/2 mean in the output of the following command
kubectl get all -n cass-operator
NAME READY STATUS RESTARTS AGE
pod/cass-operator-78c6469c6-6qhsb 1/1 Running 0 139m
pod/cluster1-dc1-default-sts-0 2/2 Running 0 138m
pod/cluster1-dc1-default-sts-1 2/2 Running 0 138m
pod/cluster1-dc1-default-sts-2 2/2 Running 0 138m
Does it mean that there are 3 data centres each running 2 cassandra nodes? It should be because my K8S cluster has only 3 nodes.
manuchadha25@cloudshell:~ (copper-frame-262317)$ gcloud compute instances list
NAME ZONE MACHINE_TYPE PREEMPTIBLE INTERNAL_IP EXTERNAL_IP STATUS
gke-cassandra-cluster-default-pool-92d544da-6fq8 europe-west4-a n1-standard-1 10.164.0.26 34.91.214.233 RUNNING
gke-cassandra-cluster-default-pool-92d544da-g0b5 europe-west4-a n1-standard-1 10.164.0.25 34.91.101.218 RUNNING
gke-cassandra-cluster-default-pool-92d544da-l87v europe-west4-a n1-standard-1 10.164.0.27 34.91.86.10 RUNNING
Or is Cassandra-operator running two containers per K8S Node?
When you are deploying some application, one pod can have more than 1 container inside. If you will check Kubernetes Pod docs you can find 2 typs:
Pods that run a single container.
Pods that run multiple containers that need to work together.
More information you can find in this docs.
How
Pod
configuration YAML with 2 containers looks like can be found here. In.spec.containers
you can specify 2 or more containers.Ive deployed those YAMLs.
Now you have to describe pod. In my example its:
And under
Containers:
you can find details like image, ports, state, mounts, etc.So this pod runs 2 containers
cassandra
server-system-logger
What when there is pod with
1/2
?It means that in this specific
pod
only 1 container isrunning
. Containers states areWaiting
,Running
andTerminated
. More information you can find here.Use case? You can check logs from specified container.
Or
You can also get this pod YAML to verify. You can do it in this example by:
As addition to your question:
Or is Cassandra-operator running two containers per K8S Node?
It's running two containers per pod. You can check which pod was scheduled to which node by: