Merge pull request #111523 from wongma7/e2epvcns

Fix missing format string PVC namespace
This commit is contained in:
Kubernetes Prow Robot 2022-08-02 10:23:56 -07:00 committed by GitHub
commit 51ea7b2169
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1201,7 +1201,7 @@ func MultiplePVMountSingleNodeCheck(client clientset.Interface, timeouts *framew
pv2, pvc2, err := e2epv.CreatePVCPV(client, timeouts, pv2Config, pvc2Config, claim.Namespace, true)
framework.ExpectNoError(err, "PVC, PV creation failed")
framework.Logf("Created PVC %s/%s and PV %s in namespace %s", pvc2.Namespace, pvc2.Name, pv2.Name)
framework.Logf("Created PVC %s/%s and PV %s", pvc2.Namespace, pvc2.Name, pv2.Name)
pod2Config := e2epod.Config{
NS: pvc2.Namespace,