Unverified Commit a0f8dd85 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #57399 from php-coder/fix_flex_pvs_describe

Automatic merge from submit-queue (batch tested with PRs 57399, 57751, 57475). 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>. printFlexPersistentVolumeSource: fix format **What this PR does / why we need it**: This PR fixes invalid format. **Special notes for your reviewer**: Addresses https://github.com/kubernetes/kubernetes/pull/56460#discussion_r153583731 Fixes #57694 **Release note**: ```release-note NONE ``` PTAL @liggitt CC @simo5
parents fd90c933 1c41db61
...@@ -1081,7 +1081,7 @@ func printFlexPersistentVolumeSource(flex *api.FlexPersistentVolumeSource, w Pre ...@@ -1081,7 +1081,7 @@ func printFlexPersistentVolumeSource(flex *api.FlexPersistentVolumeSource, w Pre
" Driver:\t%v\n"+ " Driver:\t%v\n"+
" FSType:\t%v\n"+ " FSType:\t%v\n"+
" SecretRef:\t%v\n"+ " SecretRef:\t%v\n"+
" ReadOnly:\t%v\n", " ReadOnly:\t%v\n"+
" Options:\t%v\n", " Options:\t%v\n",
flex.Driver, flex.FSType, flex.SecretRef, flex.ReadOnly, flex.Options) flex.Driver, flex.FSType, flex.SecretRef, flex.ReadOnly, flex.Options)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment