Skip to content

Commit

Permalink
Rename group in approvaltest
Browse files Browse the repository at this point in the history
  • Loading branch information
baloo42 committed Nov 4, 2024
1 parent c949566 commit 9cf38e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ static Stream<TestCase> crdApprovalCasesApiV2(String crdVersion) {
final List<TestCase> cases = new ArrayList<>();
for (boolean parallel : new boolean[] { false, true }) {
cases.add(new TestCase("printercolumns.sample.fabric8.io", crdVersion, parallel, PrinterColumn.class));
cases.add(new TestCase("validations.samples.fabric8.io", crdVersion, parallel, Validation.class));
cases.add(new TestCase("validations.sample.fabric8.io", crdVersion, parallel, Validation.class));
}
return cases.stream();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
import io.fabric8.kubernetes.model.annotation.Version;

@Version("v1alpha1")
@Group("samples.fabric8.io")
@Group("sample.fabric8.io")
public class Validation extends CustomResource<ValidationSpec, Void> {
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
apiVersion: "apiextensions.k8s.io/v1"
kind: "CustomResourceDefinition"
metadata:
name: "validations.samples.fabric8.io"
name: "validations.sample.fabric8.io"
spec:
group: "samples.fabric8.io"
group: "sample.fabric8.io"
names:
kind: "Validation"
plural: "validations"
Expand Down

0 comments on commit 9cf38e3

Please sign in to comment.