(cluster_name, namespace, name)
| 35 | } |
| 36 | |
| 37 | export function getService (cluster_name, namespace, name) { |
| 38 | return get(`${namespaceServiceUrl(cluster_name, namespace)}/${name}`) |
| 39 | } |
| 40 | |
| 41 | export function createService (cluster_name, namespace, data) { |
| 42 | return post(`${namespaceServiceUrl(cluster_name, namespace)}`, data) |
nothing calls this directly
no test coverage detected