question

jayachandran.radhakrishnan1_183130 avatar image

Need Guidance on DSE Operator deployment on MiniKube

Trying to deploy DSE Kubernetes Operator on minikube in my mac and thinking whether the document available in github datastax lab can be followed for the minikube deployment also or we need to consider some alternate configs especially for persistent storage configs.

https://github.com/datastax/labs/tree/master/dse-k8s-operator

dsekubernetes
10 |1000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

1 Answer

mike.lococo_63504 avatar image
mike.lococo_63504 answered jayachandran.radhakrishnan1_183130 commented

The storage configs are unique to every k8s distribution, and we haven't tested storage configs for everything yet. I don't have a minikube installation handy to test on, but I believe the following should work:

apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
  name: dse-storage
provisioner: k8s.io/minikube-hostpath
reclaimPolicy: Delete
volumeBindingMode: Immediate

Let me know if that gets you underway or if you still have trouble.

1 comment Share
10 |1000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

Thanks mike, will test and provide the feedback.

0 Likes 0 ·