(cluster_name, namespace, name)
| 31 | } |
| 32 | |
| 33 | export function deleteService (cluster_name, namespace, name) { |
| 34 | return del(`${namespaceServiceUrl(cluster_name, namespace)}/${name}`) |
| 35 | } |
| 36 | |
| 37 | export function getService (cluster_name, namespace, name) { |
| 38 | return get(`${namespaceServiceUrl(cluster_name, namespace)}/${name}`) |
nothing calls this directly
no test coverage detected