util: call WriteCephConfig() in cephcsi.go

This commit calls WriteCephConfig() in cephcsi.go to
create ceph.conf and keyring if it is not mounted to
be used by all cli calls and conn cmds.

Before this change, rbd-controller/omap-generator did not create
ceph.conf on startup.

Signed-off-by: Rakshith R <rar@redhat.com>
(cherry picked from commit 0a7a7f4866)
This commit is contained in:
Rakshith R
2021-09-08 15:07:38 +05:30
committed by mergify[bot]
parent c8f8272d77
commit e5f6cc53f0
3 changed files with 4 additions and 9 deletions

View File

@ -209,6 +209,10 @@ func main() {
}
}
if err = util.WriteCephConfig(); err != nil {
util.FatalLogMsg("failed to write ceph configuration file (%v)", err)
}
util.DefaultLog("Starting driver type: %v with name: %v", conf.Vtype, dname)
switch conf.Vtype {
case rbdType: