mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-04-10 13:01:17 +08:00
rbd: do not start the healer for NBD on non-Kubernetes platforms
When running on Docker Swarm, the RBD-healer fails with an error like: > healer had failures, err failed to get cluster config: unable to load > in-cluster configuration, KUBERNETES_SERVICE_HOST and > KUBERNETES_SERVICE_PORT must be defined Before starting the healer, check if we're running on Kubernetes, so that non-Kubernetes platforms do not get confusing warnings. Updates: #3769 Signed-off-by: Niels de Vos <ndevos@ibm.com>
This commit is contained in:
parent
4b113097be
commit
437d90c84d
@ -201,7 +201,7 @@ func (r *Driver) Run(conf *util.Config) {
|
||||
|
||||
r.startProfiling(conf)
|
||||
|
||||
if conf.IsNodeServer {
|
||||
if conf.IsNodeServer && k8s.RunsOnKubernetes() {
|
||||
go func() {
|
||||
// TODO: move the healer to csi-addons
|
||||
err := rbd.RunVolumeHealer(r.ns, conf)
|
||||
|
Loading…
x
Reference in New Issue
Block a user