We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b05b43b commit 8c64798Copy full SHA for 8c64798
src/KubeOps/Operator/Commands/Generators/CrdGenerator.cs
@@ -12,7 +12,6 @@
12
using KubeOps.Operator.KubernetesEntities;
13
using KubeOps.Operator.Serialization;
14
using McMaster.Extensions.CommandLineUtils;
15
-using V1JSONSchemaProps = k8s.Models.V1JSONSchemaProps;
16
17
namespace KubeOps.Operator.Commands.Generators
18
{
@@ -145,7 +144,7 @@ private static V1JSONSchemaProps MapProperty(PropertyInfo info)
145
144
146
private static V1JSONSchemaProps MapType(Type type)
147
148
- var props = new KubernetesEntities.V1JSONSchemaProps();
+ var props = new V1JSONSchemaProps();
149
150
// this description is on the class
151
props.Description = type.GetCustomAttributes<DisplayAttribute>(true).FirstOrDefault()?.Description;
src/KubeOps/Operator/KubernetesEntities/V1JSONSchemaProps.cs
0 commit comments