mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-18 20:30:23 +00:00
Remove unwanted else block and add comments about some exported functions
and variables. Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
parent
2f1317ff1d
commit
2f0595ab71
@ -96,7 +96,7 @@ func createCephUser(volOptions *volumeOptions, adminCr *credentials, volId volum
|
|||||||
"osd", caps.Osd,
|
"osd", caps.Osd,
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := execCommandJson(&ents, "ceph", args[:]...); err != nil {
|
if err := execCommandJSON(&ents, "ceph", args[:]...); err != nil {
|
||||||
return nil, fmt.Errorf("error creating ceph user: %v", err)
|
return nil, fmt.Errorf("error creating ceph user: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,8 +26,10 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
// PluginFolder is the kubelet plugin directory for cephfs plugin
|
||||||
PluginFolder = "/var/lib/kubelet/plugins/csi-cephfsplugin"
|
PluginFolder = "/var/lib/kubelet/plugins/csi-cephfsplugin"
|
||||||
Version = "0.3.0"
|
// Version of the cephfs csi driver
|
||||||
|
Version = "0.3.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
type cephfsDriver struct {
|
type cephfsDriver struct {
|
||||||
@ -46,6 +48,7 @@ var (
|
|||||||
DefaultVolumeMounter string
|
DefaultVolumeMounter string
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// NewCephFSDriver provides a remote csi cephfs driver object.
|
||||||
func NewCephFSDriver() *cephfsDriver {
|
func NewCephFSDriver() *cephfsDriver {
|
||||||
return &cephfsDriver{}
|
return &cephfsDriver{}
|
||||||
}
|
}
|
||||||
|
@ -53,7 +53,7 @@ func execCommandAndValidate(program string, args ...string) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func execCommandJson(v interface{}, program string, args ...string) error {
|
func execCommandJSON(v interface{}, program string, args ...string) error {
|
||||||
out, err := execCommand(program, args...)
|
out, err := execCommand(program, args...)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -119,33 +119,32 @@ func (k8scm *K8sCMCache) Create(identifier string, data interface{}) error {
|
|||||||
if cm != nil && err == nil {
|
if cm != nil && err == nil {
|
||||||
glog.V(4).Infof("k8s-cm-cache: configmap already exists, skipping configmap creation")
|
glog.V(4).Infof("k8s-cm-cache: configmap already exists, skipping configmap creation")
|
||||||
return nil
|
return nil
|
||||||
} else {
|
|
||||||
dataJson, err := json.Marshal(data)
|
|
||||||
if err != nil {
|
|
||||||
return errors.Wrap(err, "k8s-cm-cache: marshal error")
|
|
||||||
}
|
|
||||||
cm := &v1.ConfigMap{
|
|
||||||
ObjectMeta: metav1.ObjectMeta{
|
|
||||||
Name: identifier,
|
|
||||||
Namespace: k8scm.Namespace,
|
|
||||||
Labels: map[string]string{
|
|
||||||
csiMetadataLabelAttr: cmLabel,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Data: map[string]string{},
|
|
||||||
}
|
|
||||||
cm.Data[cmDataKey] = string(dataJson)
|
|
||||||
|
|
||||||
_, err = k8scm.Client.CoreV1().ConfigMaps(k8scm.Namespace).Create(cm)
|
|
||||||
if err != nil {
|
|
||||||
if apierrs.IsAlreadyExists(err) {
|
|
||||||
glog.V(4).Infof("k8s-cm-cache: configmap already exists")
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
return errors.Wrapf(err, "k8s-cm-cache: couldn't persist %s metadata as configmap", identifier)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
dataJSON, err := json.Marshal(data)
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrap(err, "k8s-cm-cache: marshal error")
|
||||||
|
}
|
||||||
|
cm = &v1.ConfigMap{
|
||||||
|
ObjectMeta: metav1.ObjectMeta{
|
||||||
|
Name: identifier,
|
||||||
|
Namespace: k8scm.Namespace,
|
||||||
|
Labels: map[string]string{
|
||||||
|
csiMetadataLabelAttr: cmLabel,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Data: map[string]string{},
|
||||||
|
}
|
||||||
|
cm.Data[cmDataKey] = string(dataJSON)
|
||||||
|
|
||||||
|
_, err = k8scm.Client.CoreV1().ConfigMaps(k8scm.Namespace).Create(cm)
|
||||||
|
if err != nil {
|
||||||
|
if apierrs.IsAlreadyExists(err) {
|
||||||
|
glog.V(4).Infof("k8s-cm-cache: configmap already exists")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return errors.Wrapf(err, "k8s-cm-cache: couldn't persist %s metadata as configmap", identifier)
|
||||||
|
}
|
||||||
|
|
||||||
glog.V(4).Infof("k8s-cm-cache: configmap %s successfully created\n", identifier)
|
glog.V(4).Infof("k8s-cm-cache: configmap %s successfully created\n", identifier)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user