You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
kubectl version
Client Version: v1.28.5
Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3
Server Version: v1.28.5
openebs version : v3.10
OS : Redhat 9.3
K8 cluster details: 1 Mater and 3 worker nodes and each worker node have a 30GB block device to configure cStor storage and use cStor Volumes.
2.Output of created CSPC,Storage class, volumes ,Blockdevices,pool instances
3.Every thing look flawless right even i to thought the same till now but i tried to deploy a pod using cstor-pvc pvc then pod is stucked at ContainerCreating
kubectl version
Client Version: v1.28.5
Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3
Server Version: v1.28.5
openebs version : v3.10
OS : Redhat 9.3
K8 cluster details: 1 Mater and 3 worker nodes and each worker node have a 30GB block device to configure cStor storage and use cStor Volumes.
I followed below reference to configure cStor storage and use cStor Volumes https://openebs.io/docs/user-guides/cstor .
This is my cspc.yaml file.
apiVersion: cstor.openebs.io/v1
kind: CStorPoolCluster
metadata:
name: cstor-disk-pool
namespace: openebs
spec:
pools:
nodeSelector:
kubernetes.io/hostname: "w1"
dataRaidGroups:
poolConfig:
dataRaidGroupType: "stripe"
nodeSelector:
kubernetes.io/hostname: "w2"
dataRaidGroups:
poolConfig:
dataRaidGroupType: "stripe"
nodeSelector:
kubernetes.io/hostname: "w3"
dataRaidGroups:
poolConfig:
dataRaidGroupType: "stripe"
2.Output of created CSPC,Storage class, volumes ,Blockdevices,pool instances
3.Every thing look flawless right even i to thought the same till now but i tried to deploy a pod using cstor-pvc pvc then pod is stucked at ContainerCreating
dummypod.yaml
apiVersion: v1
kind: Pod
metadata:
name: busybox
namespace: default
spec:
containers:
image: busybox
imagePullPolicy: Always
name: busybox
volumeMounts:
name: demo-vol
volumes:
persistentVolumeClaim:
claimName: cstor-pvc
The text was updated successfully, but these errors were encountered: