Skip to content

Commit 2b6857d

Browse files
authored
Merge pull request kubernetes#85293 from huffmanca/include_fstype_csi
Included FSType in CSI volumes
2 parents 249c6cf + bbae978 commit 2b6857d

File tree

1 file changed

+2
-1
lines changed
  • staging/src/k8s.io/kubectl/pkg/describe/versioned

1 file changed

+2
-1
lines changed

staging/src/k8s.io/kubectl/pkg/describe/versioned/describe.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1269,9 +1269,10 @@ func printCSIVolumeSource(csi *corev1.CSIVolumeSource, w PrefixWriter) {
12691269
func printCSIPersistentVolumeSource(csi *corev1.CSIPersistentVolumeSource, w PrefixWriter) {
12701270
w.Write(LEVEL_2, "Type:\tCSI (a Container Storage Interface (CSI) volume source)\n"+
12711271
" Driver:\t%v\n"+
1272+
" FSType:\t%v\n"+
12721273
" VolumeHandle:\t%v\n"+
12731274
" ReadOnly:\t%v\n",
1274-
csi.Driver, csi.VolumeHandle, csi.ReadOnly)
1275+
csi.Driver, csi.FSType, csi.VolumeHandle, csi.ReadOnly)
12751276
printCSIPersistentVolumeAttributesMultiline(w, "VolumeAttributes", csi.VolumeAttributes)
12761277
}
12771278

0 commit comments

Comments
 (0)