This example is based on the official Kubernetes Cassandra tutorial.
Generate the Kubernetes architecture diagram for cassandra.yml:
$ kube-diagrams cassandra.ymlStart a minikube cluster:
$ minikube start --memory 5120 --cpus=4Deploy the Cassandra application:
$ kubectl apply -f cassandra.ymlWait a few minutes for the Cassandra application to be deployed.
Get all Kubernetes resources in the default namespace:
$ kubectl get all,pvc,serviceaccount,configmap,pv,storageclass -o=yaml > default.ymlGenerate a Kubernetes architecture diagram for the default namespace:
$ kube-diagrams default.ymlDelete Cassandra application.
$ kubectl delete -f cassandra.ymlArchitecture diagram for cassandra.yml:

