-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(crd-generator): added support for selectable fields (6540)
feat(crd-generator): Add support for selectable fields (#6392) --- Include selectable field in unit test --- Add docs about `@AdditionalPrinterColumn` annotation --- Add docs about `@SelectableField` and `@AdditionalSelectableField` annotation --- Add changelog
- Loading branch information
Showing
14 changed files
with
345 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...src/test/java/io/fabric8/crd/generator/approvaltests/selectablefield/SelectableField.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Copyright (C) 2015 Red Hat, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.fabric8.crd.generator.approvaltests.selectablefield; | ||
|
||
import io.fabric8.crd.generator.annotation.AdditionalSelectableField; | ||
import io.fabric8.kubernetes.client.CustomResource; | ||
import io.fabric8.kubernetes.model.annotation.Group; | ||
import io.fabric8.kubernetes.model.annotation.Version; | ||
|
||
@Version("v1alpha1") | ||
@Group("sample.fabric8.io") | ||
@AdditionalSelectableField(jsonPath = ".spec.deepLevel1.name") | ||
public class SelectableField extends CustomResource<SelectableFieldSpec, Void> { | ||
} |
46 changes: 46 additions & 0 deletions
46
...test/java/io/fabric8/crd/generator/approvaltests/selectablefield/SelectableFieldSpec.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Copyright (C) 2015 Red Hat, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.fabric8.crd.generator.approvaltests.selectablefield; | ||
|
||
import io.fabric8.crd.generator.annotation.SelectableField; | ||
import lombok.Data; | ||
|
||
@Data | ||
public class SelectableFieldSpec { | ||
|
||
@SelectableField | ||
private String id; | ||
|
||
private DeepLevel1 deepLevel1; | ||
|
||
@Data | ||
static class DeepLevel1 { | ||
// targeted from @AdditionalSelectableField | ||
private String name; | ||
|
||
@SelectableField | ||
private Integer fromLevel1; | ||
|
||
private DeepLevel2 deepLevel2; | ||
} | ||
|
||
@Data | ||
static class DeepLevel2 { | ||
@SelectableField | ||
private Boolean fromLevel2; | ||
} | ||
|
||
} |
44 changes: 44 additions & 0 deletions
44
.../CRDGeneratorApprovalTest.approvalTest.selectablefields.sample.fabric8.io.v1.approved.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Generated by Fabric8 CRDGenerator, manual edits might get overwritten! | ||
apiVersion: "apiextensions.k8s.io/v1" | ||
kind: "CustomResourceDefinition" | ||
metadata: | ||
name: "selectablefields.sample.fabric8.io" | ||
spec: | ||
group: "sample.fabric8.io" | ||
names: | ||
kind: "SelectableField" | ||
plural: "selectablefields" | ||
singular: "selectablefield" | ||
scope: "Cluster" | ||
versions: | ||
- name: "v1alpha1" | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
deepLevel1: | ||
properties: | ||
deepLevel2: | ||
properties: | ||
fromLevel2: | ||
type: "boolean" | ||
type: "object" | ||
fromLevel1: | ||
type: "integer" | ||
name: | ||
type: "string" | ||
type: "object" | ||
id: | ||
type: "string" | ||
type: "object" | ||
status: | ||
type: "object" | ||
type: "object" | ||
selectableFields: | ||
- jsonPath: ".spec.deepLevel1.deepLevel2.fromLevel2" | ||
- jsonPath: ".spec.deepLevel1.fromLevel1" | ||
- jsonPath: ".spec.deepLevel1.name" | ||
- jsonPath: ".spec.id" | ||
served: true | ||
storage: true |
Oops, something went wrong.