├── .codeclimate.yaml ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .mdlrc ├── .simplecov ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── kubectl-view-utilization ├── markdown.rb ├── static └── view-utilization.png └── test ├── Dockerfile ├── arguments.bats ├── helper_functions.bash ├── kubectl.bats ├── mocks └── kubectl.bash ├── namespaces.bats ├── nodes.bats └── utilization.bats /.codeclimate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/.codeclimate.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/.mdlrc -------------------------------------------------------------------------------- /.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/.simplecov -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/README.md -------------------------------------------------------------------------------- /kubectl-view-utilization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/kubectl-view-utilization -------------------------------------------------------------------------------- /markdown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/markdown.rb -------------------------------------------------------------------------------- /static/view-utilization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/static/view-utilization.png -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/arguments.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/test/arguments.bats -------------------------------------------------------------------------------- /test/helper_functions.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/test/helper_functions.bash -------------------------------------------------------------------------------- /test/kubectl.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/test/kubectl.bats -------------------------------------------------------------------------------- /test/mocks/kubectl.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/test/mocks/kubectl.bash -------------------------------------------------------------------------------- /test/namespaces.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/test/namespaces.bats -------------------------------------------------------------------------------- /test/nodes.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/test/nodes.bats -------------------------------------------------------------------------------- /test/utilization.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etopeter/kubectl-view-utilization/HEAD/test/utilization.bats --------------------------------------------------------------------------------