Metadata-Version: 2.1
Name: kubectlgetall
Version: 0.1.2
Summary: Get a list of CRs for cluster CRDs in a namespace
Home-page: https://github.com/Boomatang/kubectlgetall
Keywords: OpenShift,Kubernetes,k8s,CRD,CR
Author: Jim Fitzpatrick
Author-email: jimfity@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development
Requires-Dist: click (>=8.1.3,<9.0.0)
Project-URL: Documentation, https://github.com/Boomatang/kubectlgetall
Project-URL: Repository, https://github.com/Boomatang/kubectlgetall
Description-Content-Type: text/markdown

# kubectlgetall

List all CR's for all CRD types on a cluster in a given namespace.

**Requires kubectl to be installed.**

## Usage

```shell
kubectlgetall <namespace>
```

There are some flags that can be passed.
```shell
kubectlgetall --help
Usage: kubectlgetall [OPTIONS] NAMESPACE

  Returns a list of CR for the different CRDs in a given namespace

Options:
  --version           Show the version and exit.
  -s, --sort          Prints the resources in an order. Initial results take
                      longer to show. Unsorted return results faster but can
                      hit rate limits.
  -e, --exclude TEXT  Exclude crd types. Multiple can be excluded eg: "-e <crd
                      type> -e <other type>"
  --help              Show this message and exit.


```
