@@ -132,13 +132,13 @@ def discover
132
132
end
133
133
134
134
def self . parse_definition ( kind , name )
135
- # Kubernetes gives us have 3 inputs:
136
- # kind: "ComponentStatus"
137
- # name: "componentstatuses"
138
- # singularName: "componentstatus" (usually kind.downcase)
135
+ # Kubernetes gives us 3 inputs:
136
+ # kind: "ComponentStatus", "NetworkPolicy", "Endpoints"
137
+ # name: "componentstatuses", "networkpolicies", "endpoints"
138
+ # singularName: "componentstatus" etc (usually omitted, defaults to kind.downcase)
139
139
# and want to derive singular and plural method names, with underscores:
140
- # "component_status "
141
- # "component_statuses "
140
+ # "network_policy "
141
+ # "network_policies "
142
142
# kind's CamelCase word boundaries determine our placement of underscores.
143
143
144
144
if IRREGULAR_NAMES [ kind ]
@@ -150,13 +150,24 @@ def self.parse_definition(kind, name)
150
150
# But how? If it differs from kind.downcase, kind's word boundaries don't apply.
151
151
singular_name = kind . downcase
152
152
153
- if name . start_with? ( kind . downcase )
154
- plural_suffix = name [ kind . downcase . length ..-1 ] # "es"
155
- singular_underscores = ClientMixin . underscore_entity ( kind ) # "component_status"
156
- method_names = [ singular_underscores , singular_underscores + plural_suffix ]
157
- else
158
- # Something weird, can't infer underscores for plural so just give them up
153
+ if !( /[A-Z]/ =~ kind )
154
+ # Some custom resources have a fully lowercase kind - can't infer underscores.
159
155
method_names = [ singular_name , name ]
156
+ else
157
+ # Some plurals are not exact suffixes, e.g. NetworkPolicy -> networkpolicies.
158
+ # So don't expect full last word to match.
159
+ /^(?<prefix>(.*[A-Z]))(?<singular_suffix>[^A-Z]*)$/ =~ kind # "NetworkP", "olicy"
160
+ if name . start_with? ( prefix . downcase )
161
+ plural_suffix = name [ prefix . length ..-1 ] # "olicies"
162
+ prefix_underscores = ClientMixin . underscore_entity ( prefix ) # "network_p"
163
+ p [ prefix , prefix_underscores , singular_suffix , plural_suffix ]
164
+
165
+ method_names = [ prefix_underscores + singular_suffix , # "network_policy"
166
+ prefix_underscores + plural_suffix ] # "network_policies"
167
+ else
168
+ # Something weird, can't infer underscores for plural so just give them up
169
+ method_names = [ singular_name , name ]
170
+ end
160
171
end
161
172
end
162
173
0 commit comments