-
Notifications
You must be signed in to change notification settings - Fork 297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[cdk8s-cli] emit a single module per k8s API group as default for import from crds.dev #401
Labels
Comments
prasek
added
feature-request
New/Enhanced functionality wanted
needs-triage
Priority and effort undetermined yet
labels
Nov 19, 2020
iliapolo
added
effort/medium
1 week tops
p2
and removed
needs-triage
Priority and effort undetermined yet
labels
Nov 23, 2020
prasek
added a commit
to prasek/cdk8s
that referenced
this issue
Nov 24, 2020
Emit a single module per API group for crds.dev import by default, so after you: `cdk8s import github:account/repo[@Version]` you can use a single line import statement for multiple API types: ``` import { CompositeResourceDefinition, Composition } from './imports/apiextensions.crossplane.io'; ``` Resolves cdk8s-team#401 *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* Signed-off-by: Phil Prasek <[email protected]>
prasek
added a commit
to prasek/cdk8s
that referenced
this issue
Nov 26, 2020
Emit a single module per API group for crds.dev import by default, so after you: `cdk8s import github:account/repo[@Version]` you can use a single line import statement for multiple API types: ``` import { CompositeResourceDefinition, Composition } from './imports/apiextensions.crossplane.io'; ``` Resolves cdk8s-team#401 *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* Signed-off-by: Phil Prasek <[email protected]>
prasek
added a commit
to prasek/cdk8s
that referenced
this issue
Dec 2, 2020
Emit a single module per API group for all crd immports, so after you: `cdk8s import github:account/repo[@Version]` you can use a single line import statement for multiple API types: ``` import { CompositeResourceDefinition, Composition } from './imports/apiextensions.crossplane.io'; ``` Resolves cdk8s-team#401 *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* Signed-off-by: Phil Prasek <[email protected]>
mergify bot
pushed a commit
that referenced
this issue
Dec 3, 2020
Follow-on to #378 Emit a single module per API group for all imports: ```sh cdk8s import github:account/repo[@Version] ``` you can use a single line import statement for multiple API types: ```ts import { CompositeResourceDefinition, Composition } from './imports/apiextensions.crossplane.io'; ``` Here's some sample output: https://github.com/prasek/crossplane-cdk/tree/cross-pkg/test/imports/provider-aws Resolves #401 *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
|
campionfellin
pushed a commit
to campionfellin/cdk8s
that referenced
this issue
Dec 11, 2020
Follow-on to cdk8s-team#378 Emit a single module per API group for all imports: ```sh cdk8s import github:account/repo[@Version] ``` you can use a single line import statement for multiple API types: ```ts import { CompositeResourceDefinition, Composition } from './imports/apiextensions.crossplane.io'; ``` Here's some sample output: https://github.com/prasek/crossplane-cdk/tree/cross-pkg/test/imports/provider-aws Resolves cdk8s-team#401 *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Follow on to #377
Would like to generate a single module per k8s API group with all CRDs for that API group, so you could:
and have this be the default for importing from https://doc.crds.dev using:
The text was updated successfully, but these errors were encountered: