Metadata-Version: 2.1
Name: kubectlgetall
Version: 0.3.0
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.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
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>"
  -o, --output [tty|json|sqlite]  Changes the output format of the results
                                  [default: tty]
  -d, --database TEXT             Path to the sqlite file to save the results.
                                  If the file does not exist it will be
                                  created.
  -l, --label TEXT                Set the label that will be saved with
                                  entries when using the --database option.
  --help                          Show this message and exit.

```

