mirror of https://github.com/k3s-io/k3s
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 @simo5pull/6/head
commit
a0f8dd85b3
|
@ -1081,7 +1081,7 @@ func printFlexPersistentVolumeSource(flex *api.FlexPersistentVolumeSource, w Pre
|
|||
" Driver:\t%v\n"+
|
||||
" FSType:\t%v\n"+
|
||||
" SecretRef:\t%v\n"+
|
||||
" ReadOnly:\t%v\n",
|
||||
" ReadOnly:\t%v\n"+
|
||||
" Options:\t%v\n",
|
||||
flex.Driver, flex.FSType, flex.SecretRef, flex.ReadOnly, flex.Options)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue