We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 160efcc commit 444a538Copy full SHA for 444a538
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/GroupVersionKind.java
@@ -34,12 +34,16 @@ public static GroupVersionKind gvkFor(Class<? extends HasMetadata> resourceClass
34
35
/**
36
* Parse GVK from a String representation. Expected format is: [group]/[version]/[kind]
37
- * <p/>
38
- * Sample: "apps/v1/Deployment"
39
+ *
+ * <pre>
+ * Sample: "apps/v1/Deployment"
40
+ * </pre>
41
42
* or: [version]/[kind]
- * Sample: v1/ConfigMap
43
44
45
+ * Sample: v1/ConfigMap
46
47
**/
48
public static GroupVersionKind fromString(String gvk) {
49
String[] parts = gvk.split("/");
0 commit comments