(cluster_name, namespace)
| 4 | return `/api/v1/proxy/${cluster_name}/k8s/apis/apps/v1/statefulsets`; |
| 5 | }; |
| 6 | const statefulsetUrlWithNs = (cluster_name, namespace) => { |
| 7 | return `/api/v1/proxy/${cluster_name}/k8s/apis/apps/v1/namespaces/${namespace}/statefulsets`; |
| 8 | }; |
| 9 | const statefulsetUrlWithNsAndName = (cluster_name, namespace ,name) => { |
| 10 | return `/api/v1/proxy/${cluster_name}/k8s/apis/apps/v1/namespaces/${namespace}/statefulsets/${name}`; |
| 11 | }; |
no outgoing calls
no test coverage detected