GetRegistryAuthSecretName returns the name of the image pull secret for a registry
(registryURL string)
| 137 | |
| 138 | // GetRegistryAuthSecretName returns the name of the image pull secret for a registry |
| 139 | func GetRegistryAuthSecretName(registryURL string) string { |
| 140 | return "devspace-pull-secrets" |
| 141 | } |
| 142 | |
| 143 | func SafeName(name string) string { |
| 144 | if len(name) > 63 { |
no outgoing calls
no test coverage detected