Skip to content

Commit

Permalink
refactor: modify the PVC default storage quota to 500G
Browse files Browse the repository at this point in the history
  • Loading branch information
yangkaa committed Jun 9, 2022
1 parent 22a8283 commit c161266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/cluster-mgr/cluster_mgr.go
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ func (r *RainbondClusteMgr) createPVCForFoobar(storageClassName string) error {
}
labels := rbdutil.LabelsForRainbond(nil)
pvc := k8sutil.PersistentVolumeClaimForGrdata(r.cluster.GetNamespace(), constants.FoobarPVC, accessModes, labels,
storageClassName, 1)
storageClassName, 500)
return r.client.Create(r.ctx, pvc)
}

Expand Down

0 comments on commit c161266

Please sign in to comment.