We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7444d8 commit ee64daeCopy full SHA for ee64dae
operator/controller/src/main/java/io/apicurio/registry/operator/ApicurioDeployment.java
@@ -27,6 +27,7 @@ protected Deployment desired(
27
ApicurioRegistry apicurioRegistry, Context<ApicurioRegistry> context) {
28
var labels = apicurioRegistry.getMetadata().getLabels();
29
labels.putAll(Constants.defaultLabels(apicurioRegistry));
30
+ // spotless:off
31
return new DeploymentBuilder()
32
.withNewMetadata()
33
.withName(ApicurioDeployment.name(apicurioRegistry))
@@ -77,5 +78,6 @@ protected Deployment desired(
77
78
.endStrategy()
79
.endSpec()
80
.build();
81
+ // spotless:on
82
}
83
0 commit comments