We can't add prefixes to automount volume names, as adding any characters can potentially push the name over the 63 character limit (if the original object has a long name)
(volumeName string)
| 120 | // can potentially push the name over the 63 character limit (if the original |
| 121 | // object has a long name) |
| 122 | func AutoMountConfigMapVolumeName(volumeName string) string { |
| 123 | return volumeName |
| 124 | } |
| 125 | |
| 126 | func AutoMountSecretVolumeName(volumeName string) string { |
| 127 | return volumeName |
no outgoing calls