-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add new providers Signed-off-by: FogDong <[email protected]> * fix: lint Signed-off-by: FogDong <[email protected]> * fix: delete useless code Signed-off-by: FogDong <[email protected]> * fix: ignore package error Signed-off-by: FogDong <[email protected]> * fix: add test -v Signed-off-by: FogDong <[email protected]> * fix: set dynamic client Signed-off-by: FogDong <[email protected]> * fix: register schema Signed-off-by: FogDong <[email protected]> * fix: delete -v Signed-off-by: FogDong <[email protected]> * fix: fix test Signed-off-by: FogDong <[email protected]> --------- Signed-off-by: FogDong <[email protected]>
- Loading branch information
Showing
41 changed files
with
3,497 additions
and
137 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.3 | ||
creationTimestamp: null | ||
name: packages.cue.oam.dev | ||
spec: | ||
group: cue.oam.dev | ||
names: | ||
kind: Package | ||
listKind: PackageList | ||
plural: packages | ||
shortNames: | ||
- pkg | ||
- cpkg | ||
- cuepkg | ||
- cuepackage | ||
singular: package | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .spec.path | ||
name: PATH | ||
type: string | ||
- jsonPath: .spec.provider.protocol | ||
name: PROTO | ||
type: string | ||
- jsonPath: .spec.provider.endpoint | ||
name: ENDPOINT | ||
type: string | ||
name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: Package is an extension for cuex engine | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: PackageSpec the spec for Package | ||
properties: | ||
path: | ||
type: string | ||
provider: | ||
description: Provider the external Provider in Package for cuex to | ||
run functions | ||
properties: | ||
endpoint: | ||
type: string | ||
protocol: | ||
description: ProviderProtocol the protocol type for external Provider | ||
type: string | ||
required: | ||
- endpoint | ||
- protocol | ||
type: object | ||
templates: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
required: | ||
- path | ||
- templates | ||
type: object | ||
required: | ||
- spec | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: {} |
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
Oops, something went wrong.