You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When names of methods aren't conventional, a minor tweak can allow using
the auto-generated methods.
For instance, the CNI defines entity named NetworkAttachmentDefinition.
Its resource is 'network-attachment-definition', so to access the
resource a call should be made for:
/apis/k8s.cni.cncf.io/v1/namespaces/default/network-attachment-definitions/ovs-foreman
However, with the current code, the generated methods for that resource
rely on the reported resource definition:
{
"name"=>"network-attachment-definitions",
"singularName"=>"network-attachment-definition",
"namespaced"=>true,
"kind"=>"NetworkAttachmentDefinition",
"verbs"=>["delete", "deletecollection", "get", "list", "patch", "create", "update", "watch"],
"shortNames"=>["net-attach-def"]
}
And by that, the stored information for the entity looks like:
<OpenStruct entity_type="NetworkAttachmentDefinition",
resource_name="network-attachment-definitions",
method_names=["networkattachmentdefinition", "network-attachment-definitions"]>
This produces unsupported generated method names such as 'get_network-attachment-definitions'
and 'watch_network-attachment-definitions' which prevents client to access that resource.
The PR proposes to replace dashes with underscores to allow generation
of legal methods names, regardless of the weird naming.
0 commit comments