(cluster_name, namespace, name)
| 32 | } |
| 33 | |
| 34 | export function getSecret (cluster_name, namespace, name) { |
| 35 | return get(`${namespaceSecretUrl(cluster_name, namespace)}/${name}`) |
| 36 | } |
| 37 | |
| 38 | export function createSecret (cluster_name, namespace, data) { |
| 39 | return post(`${namespaceSecretUrl(cluster_name, namespace)}`, data) |
no test coverage detected