diff options
author | Konrad Bańka <k.banka@samsung.com> | 2020-09-25 16:35:02 +0200 |
---|---|---|
committer | Konrad Bańka <k.banka@samsung.com> | 2020-09-30 12:56:34 +0200 |
commit | b5ccaabd6c3b06286cc845bfb910fc2bd1ab6419 (patch) | |
tree | 3d8922fc3e7fa444a27d2b0fb81c220819f8c637 /src/k8splugin/internal/plugin/helpers.go | |
parent | 603a68284970205fa95dec67d4f9b88ae99e8d2c (diff) |
Fix Status API to actually provide instance status
Provide information about instance resources and Pods inside status
response.
Issue-ID: MULTICLOUD-1177
Signed-off-by: Konrad Bańka <k.banka@samsung.com>
Change-Id: Iee6fd56120d091dddfa6b6d0e4aa7eb36d40e888
Diffstat (limited to 'src/k8splugin/internal/plugin/helpers.go')
-rw-r--r-- | src/k8splugin/internal/plugin/helpers.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k8splugin/internal/plugin/helpers.go b/src/k8splugin/internal/plugin/helpers.go index 19ff03ab..7078b813 100644 --- a/src/k8splugin/internal/plugin/helpers.go +++ b/src/k8splugin/internal/plugin/helpers.go @@ -69,8 +69,8 @@ type Reference interface { //Delete a kubernetes resource described in the provided namespace Delete(resource helm.KubernetesResource, namespace string, client KubernetesConnector) error - //Update kubernetes resource based on the groupVersionKind and resourceName provided in resource - Update(yamlFilePath string, namespace string, client KubernetesConnector) (string, error) + //Update kubernetes resource based on the groupVersionKind and resourceName provided in resource + Update(yamlFilePath string, namespace string, client KubernetesConnector) (string, error) } // GetPluginByKind returns a plugin by the kind name |