Skip to content

Commit ae645b1

Browse files
roycaihwmicw523
andauthored
Add comments
Co-Authored-By: micw523 <micw@umich.edu>
1 parent 0287c12 commit ae645b1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

kubernetes/utils/create_from_yaml.py

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ def create_from_yaml_single_item(
9797
# Take care for the case e.g. api_type is "apiextensions.k8s.io"
9898
# Only replace the last instance
9999
group = "".join(group.rsplit(".k8s.io", 1))
100+
# convert group name from DNS subdomain format to python class name convention
100101
group = "".join(word.capitalize() for word in group.split('.'))
101102
fcn_to_call = "{0}{1}Api".format(group, version.capitalize())
102103
k8s_api = getattr(client, fcn_to_call)(k8s_client)

0 commit comments

Comments
 (0)