(cluster_name, namespace, name)
| 28 | } |
| 29 | |
| 30 | export function deleteSecrets (cluster_name, namespace, name) { |
| 31 | return del(`${namespaceSecretUrl(cluster_name, namespace)}/${name}`) |
| 32 | } |
| 33 | |
| 34 | export function getSecret (cluster_name, namespace, name) { |
| 35 | return get(`${namespaceSecretUrl(cluster_name, namespace)}/${name}`) |
nothing calls this directly
no test coverage detected