mirror of https://github.com/k3s-io/k3s
Merge pull request #67822 from humblec/remove-config
Automatic merge from submit-queue (batch tested with PRs 67822, 67835). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Remove provisioner config from log message. Signed-off-by: hchiramm <hchiramm@redhat.com> ``` release-note-none ```pull/8/head
commit
6a81baf133
|
@ -709,8 +709,6 @@ func (p *glusterfsVolumeProvisioner) Provision(selectedNode *v1.Node, allowedTop
|
|||
}
|
||||
p.provisionerConfig = *cfg
|
||||
|
||||
glog.V(4).Infof("creating volume with configuration %+v", p.provisionerConfig)
|
||||
|
||||
gidTable, err := p.plugin.getGidTable(scName, cfg.gidMin, cfg.gidMax)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to get gidTable: %v", err)
|
||||
|
@ -1171,7 +1169,7 @@ func (plugin *glusterfsPlugin) ExpandVolumeDevice(spec *volume.Spec, newSize res
|
|||
return oldSize, err
|
||||
}
|
||||
|
||||
glog.V(4).Infof("expanding volume: %q with configuration: %+v", volumeID, cfg)
|
||||
glog.V(4).Infof("expanding volume: %q", volumeID)
|
||||
|
||||
//Create REST server connection
|
||||
cli := gcli.NewClient(cfg.url, cfg.user, cfg.secretValue)
|
||||
|
|
Loading…
Reference in New Issue