We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc88181 commit 6999810Copy full SHA for 6999810
cmd/crd-puller/README.md
@@ -0,0 +1,17 @@
1
+# CRD Puller
2
+
3
+The `crd-puller` can be used for testing and development in order to export a
4
+CustomResourceDefinition for any Group/Version/Kind (GVK) in a Kubernetes cluster.
5
6
+The main difference between this and kcp's own `crd-puller` is that this one
7
+works based on GVKs and not resources (i.e. on `apps/v1 Deployment` instead of
8
+`apps.deployments`). This is more useful since a PublishedResource publishes a
9
+specific Kind and version.
10
11
+## Usage
12
13
+```shell
14
+export KUBECONFIG=/path/to/kubeconfig
15
16
+./crd-puller Deployment.v1.apps.k8s.io
17
+```
0 commit comments