(cluster_name, namespace, data)
| 39 | } |
| 40 | |
| 41 | export function createService (cluster_name, namespace, data) { |
| 42 | return post(`${namespaceServiceUrl(cluster_name, namespace)}`, data) |
| 43 | } |
| 44 | |
| 45 | export function updateService (cluster_name, namespace, name, data) { |
| 46 | return put(`${namespaceServiceUrl(cluster_name, namespace)}/${name}`, data) |
nothing calls this directly
no test coverage detected