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 8c64798 commit 88cd7c4Copy full SHA for 88cd7c4
src/KubeOps/Operator/Commands/Generators/CrdGenerator.cs
@@ -115,6 +115,7 @@ public static IEnumerable<V1CustomResourceDefinition> GenerateCrds()
115
var version = new V1CustomResourceDefinitionVersion();
116
spec.Versions = new[] {version};
117
118
+ // TODO: versions?
119
version.Name = entityDefinition.Version;
120
version.Served = true;
121
version.Storage = true;
src/KubeOps/Operator/KubernetesOperator.cs
@@ -14,7 +14,6 @@
14
using Newtonsoft.Json.Converters;
15
using Newtonsoft.Json.Serialization;
16
using YamlDotNet.Serialization;
17
-using YamlDotNet.Serialization.NamingConventions;
18
19
namespace KubeOps.Operator
20
{
0 commit comments