averma-canonical

Results 1 issues of averma-canonical

The current method to remove a label looks somewhat convoluted. ``` label_to_remove = label.replace('/','~1') patch = [{"op": "remove", "path": label_to_remove}] client.patch( res=ServiceAccount, name=resource_name, namespace=namespace, obj=patch, patch_type=PatchType.JSON, ) ``` **Request is...