-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update custom resource api group (#8)
* feat: check api group * feat: clean properties * chore(deps): update parent to 0.25.0 * fix: group in helm
- Loading branch information
1 parent
2280c77
commit d2636ff
Showing
5 changed files
with
64 additions
and
64 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
61 changes: 0 additions & 61 deletions
61
src/main/helm/crds/products.io.github.onecx.product.store-v1.yml
This file was deleted.
Oops, something went wrong.
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,61 @@ | ||
# Generated by Fabric8 CRDGenerator, manual edits might get overwritten! | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: products.onecx.github.io | ||
spec: | ||
group: onecx.github.io | ||
names: | ||
kind: Product | ||
plural: products | ||
singular: product | ||
scope: Namespaced | ||
versions: | ||
- name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
basePath: | ||
type: string | ||
classifications: | ||
items: | ||
type: string | ||
type: array | ||
description: | ||
type: string | ||
displayName: | ||
type: string | ||
iconName: | ||
type: string | ||
imageUrl: | ||
type: string | ||
name: | ||
type: string | ||
version: | ||
type: string | ||
type: object | ||
status: | ||
properties: | ||
message: | ||
type: string | ||
observedGeneration: | ||
type: integer | ||
product-name: | ||
type: string | ||
response-code: | ||
type: integer | ||
status: | ||
enum: | ||
- CREATED | ||
- ERROR | ||
- UNDEFINED | ||
- UPDATED | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
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