@@ -230,12 +230,10 @@ mod utils;
230230/// #[versioned(
231231/// version(name = "v1alpha1"),
232232/// version(name = "v1beta1"),
233- ///
234233/// options(k8s(
235234/// // Highly experimental conversion tracking. Opting into this feature will
236235/// // introduce frequent breaking changes.
237236/// experimental_conversion_tracking,
238- ///
239237/// // Enables instrumentation and log events via the tracing crate.
240238/// enable_tracing,
241239/// ))
@@ -329,28 +327,22 @@ mod utils;
329327/// // **Required.** Set the group of the CRD, usually the domain of the
330328/// // company, like `example.com`.
331329/// group = "example.com",
332- ///
333330/// // Override the kind field of the CRD. This defaults to the struct
334331/// // name (without the `Spec` suffix). Overriding this value will also
335332/// // influence the names of other generated items, like the status
336333/// // struct (if used) or the version enum.
337334/// kind = "CustomKind",
338- ///
339335/// // Set the singular name. Defaults to lowercased `kind` value.
340336/// singular = "...",
341- ///
342337/// // Set the plural name. Defaults to inferring from singular.
343338/// plural = "...",
344- ///
345339/// // Indicate that this is a namespaced scoped resource rather than a
346340/// // cluster scoped resource.
347341/// namespaced,
348- ///
349342/// // Set the specified struct as the status subresource. If conversion
350343/// // tracking is enabled, this struct will be automatically merged into
351344/// // the generated tracking status struct.
352345/// status = "FooStatus",
353- ///
354346/// // Set a shortname. This can be specified multiple times.
355347/// shortname = "..."
356348/// ))]
0 commit comments