Fixes multiple namespaces bug (#276)

* fix ns bug

* add tests

* rename some variables

* rename ns to namespace

* fix delete + correctly type

* add typing to input obj parser
This commit is contained in:
Oliver King
2023-02-06 13:42:55 -05:00
committed by GitHub
parent 756cc0a511
commit ecb488266d
14 changed files with 326 additions and 81 deletions
+2 -1
View File
@@ -280,7 +280,8 @@ export function getResources(
) {
resources.push({
type: inputObject.kind,
name: inputObject.metadata.name
name: inputObject.metadata.name,
namespace: inputObject?.metadata?.namespace
})
}
})