mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-09 03:57:41 +00:00
Add describe output for ConfigMap volumes
This commit is contained in:
parent
2c3b3d5716
commit
4c61f2ce27
@ -527,6 +527,8 @@ func describeVolumes(volumes []api.Volume, out io.Writer) {
|
|||||||
printGitRepoVolumeSource(volume.VolumeSource.GitRepo, out)
|
printGitRepoVolumeSource(volume.VolumeSource.GitRepo, out)
|
||||||
case volume.VolumeSource.Secret != nil:
|
case volume.VolumeSource.Secret != nil:
|
||||||
printSecretVolumeSource(volume.VolumeSource.Secret, out)
|
printSecretVolumeSource(volume.VolumeSource.Secret, out)
|
||||||
|
case volume.VolumeSource.ConfigMap != nil:
|
||||||
|
printConfigMapVolumeSource(volume.VolumeSource.ConfigMap, out)
|
||||||
case volume.VolumeSource.NFS != nil:
|
case volume.VolumeSource.NFS != nil:
|
||||||
printNFSVolumeSource(volume.VolumeSource.NFS, out)
|
printNFSVolumeSource(volume.VolumeSource.NFS, out)
|
||||||
case volume.VolumeSource.ISCSI != nil:
|
case volume.VolumeSource.ISCSI != nil:
|
||||||
@ -579,10 +581,15 @@ func printGitRepoVolumeSource(git *api.GitRepoVolumeSource, out io.Writer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func printSecretVolumeSource(secret *api.SecretVolumeSource, out io.Writer) {
|
func printSecretVolumeSource(secret *api.SecretVolumeSource, out io.Writer) {
|
||||||
fmt.Fprintf(out, " Type:\tSecret (a secret that should populate this volume)\n"+
|
fmt.Fprintf(out, " Type:\tSecret (a volume populated by a Secret)\n"+
|
||||||
" SecretName:\t%v\n", secret.SecretName)
|
" SecretName:\t%v\n", secret.SecretName)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func printConfigMapVolumeSource(configMap *api.ConfigMapVolumeSource, out io.Writer) {
|
||||||
|
fmt.Fprintf(out, " Type:\tConfigMap (a volume populated by a ConfigMap)\n"+
|
||||||
|
" Name:\t%v\n", configMap.Name)
|
||||||
|
}
|
||||||
|
|
||||||
func printNFSVolumeSource(nfs *api.NFSVolumeSource, out io.Writer) {
|
func printNFSVolumeSource(nfs *api.NFSVolumeSource, out io.Writer) {
|
||||||
fmt.Fprintf(out, " Type:\tNFS (an NFS mount that lasts the lifetime of a pod)\n"+
|
fmt.Fprintf(out, " Type:\tNFS (an NFS mount that lasts the lifetime of a pod)\n"+
|
||||||
" Server:\t%v\n"+
|
" Server:\t%v\n"+
|
||||||
|
Loading…
Reference in New Issue
Block a user