├── .flake8 ├── .gitignore ├── .pre-commit-config.yaml ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.rst ├── deploy ├── configmap.yaml ├── deployment.yaml ├── kustomization.yaml ├── rbac.yaml └── service.yaml ├── kube_resource_report ├── __init__.py ├── __main__.py ├── aws-ec2-costs-monthly.csv ├── aws-ec2-spot-costs-monthly.csv ├── cluster_discovery.py ├── example_hooks.py ├── filters.py ├── gcp-costs-monthly.csv ├── histogram.py ├── main.py ├── metrics.py ├── output.py ├── pricing.py ├── query.py ├── recommender.py ├── report.py ├── routegroup.py ├── templates │ ├── application.html │ ├── applications.html │ ├── assets │ │ ├── all.js │ │ ├── anchor.min.js │ │ ├── bulma.min.css │ │ ├── favicon.png │ │ ├── favicon.svg │ │ ├── kube-resource-report.css │ │ ├── kube-resource-report.js │ │ ├── sortable-theme-minimal.css │ │ └── sortable.min.js │ ├── base.html │ ├── cluster.html │ ├── clusters.html │ ├── elements.html │ ├── index.html │ ├── ingresses.html │ ├── loading.html │ ├── namespaces.html │ ├── node.html │ ├── nodes.html │ ├── partials │ │ ├── extrahead.html │ │ ├── footer.html │ │ └── navbar.html │ ├── pods.html │ ├── routegroups.html │ ├── team.html │ └── teams.html ├── utils.py └── vpa.py ├── poetry.lock ├── pyproject.toml ├── sample-report ├── Dockerfile ├── Makefile ├── application-registry.py ├── deploy │ ├── deployment.yaml │ └── service.yaml ├── generate-report.sh └── output │ ├── applications.html │ ├── cluster-minikube.html │ ├── clusters.html │ ├── clusters.tsv │ ├── favicon.png │ ├── index.html │ ├── ingresses.html │ ├── ingresses.tsv │ ├── kube-resource-report.css │ ├── pods.html │ ├── pods.tsv │ ├── slack.tsv │ ├── sortable-theme-minimal.css │ ├── sortable.min.js │ ├── team-.html │ ├── team-example-team.html │ ├── team-hjacobs.html │ └── teams.html ├── tests ├── conftest.py ├── test_ema.py ├── test_histogram.py ├── test_main.py ├── test_metrics.py ├── test_query.py ├── test_recommender.py └── test_report.py ├── tox.ini └── unsupported └── chart └── kube-resource-report ├── .helmignore ├── Chart.yaml ├── templates ├── NOTES.txt ├── _helpers.tpl ├── clusterrole.yaml ├── clusterrolebinding.yaml ├── configmap-nginx.yaml ├── configmap.yaml ├── deployment.yaml ├── ingress.yaml ├── service.yaml └── serviceaccount.yaml └── values.yaml /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore=E203,E722,W503 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/README.rst -------------------------------------------------------------------------------- /deploy/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/deploy/configmap.yaml -------------------------------------------------------------------------------- /deploy/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/deploy/deployment.yaml -------------------------------------------------------------------------------- /deploy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/deploy/kustomization.yaml -------------------------------------------------------------------------------- /deploy/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/deploy/rbac.yaml -------------------------------------------------------------------------------- /deploy/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/deploy/service.yaml -------------------------------------------------------------------------------- /kube_resource_report/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1-3-g00a7914-dirty" 2 | -------------------------------------------------------------------------------- /kube_resource_report/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/__main__.py -------------------------------------------------------------------------------- /kube_resource_report/aws-ec2-costs-monthly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/aws-ec2-costs-monthly.csv -------------------------------------------------------------------------------- /kube_resource_report/aws-ec2-spot-costs-monthly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/aws-ec2-spot-costs-monthly.csv -------------------------------------------------------------------------------- /kube_resource_report/cluster_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/cluster_discovery.py -------------------------------------------------------------------------------- /kube_resource_report/example_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/example_hooks.py -------------------------------------------------------------------------------- /kube_resource_report/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/filters.py -------------------------------------------------------------------------------- /kube_resource_report/gcp-costs-monthly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/gcp-costs-monthly.csv -------------------------------------------------------------------------------- /kube_resource_report/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/histogram.py -------------------------------------------------------------------------------- /kube_resource_report/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/main.py -------------------------------------------------------------------------------- /kube_resource_report/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/metrics.py -------------------------------------------------------------------------------- /kube_resource_report/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/output.py -------------------------------------------------------------------------------- /kube_resource_report/pricing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/pricing.py -------------------------------------------------------------------------------- /kube_resource_report/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/query.py -------------------------------------------------------------------------------- /kube_resource_report/recommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/recommender.py -------------------------------------------------------------------------------- /kube_resource_report/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/report.py -------------------------------------------------------------------------------- /kube_resource_report/routegroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/routegroup.py -------------------------------------------------------------------------------- /kube_resource_report/templates/application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/application.html -------------------------------------------------------------------------------- /kube_resource_report/templates/applications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/applications.html -------------------------------------------------------------------------------- /kube_resource_report/templates/assets/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/assets/all.js -------------------------------------------------------------------------------- /kube_resource_report/templates/assets/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/assets/anchor.min.js -------------------------------------------------------------------------------- /kube_resource_report/templates/assets/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/assets/bulma.min.css -------------------------------------------------------------------------------- /kube_resource_report/templates/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/assets/favicon.png -------------------------------------------------------------------------------- /kube_resource_report/templates/assets/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/assets/favicon.svg -------------------------------------------------------------------------------- /kube_resource_report/templates/assets/kube-resource-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/assets/kube-resource-report.css -------------------------------------------------------------------------------- /kube_resource_report/templates/assets/kube-resource-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/assets/kube-resource-report.js -------------------------------------------------------------------------------- /kube_resource_report/templates/assets/sortable-theme-minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/assets/sortable-theme-minimal.css -------------------------------------------------------------------------------- /kube_resource_report/templates/assets/sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/assets/sortable.min.js -------------------------------------------------------------------------------- /kube_resource_report/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/base.html -------------------------------------------------------------------------------- /kube_resource_report/templates/cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/cluster.html -------------------------------------------------------------------------------- /kube_resource_report/templates/clusters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/clusters.html -------------------------------------------------------------------------------- /kube_resource_report/templates/elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/elements.html -------------------------------------------------------------------------------- /kube_resource_report/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/index.html -------------------------------------------------------------------------------- /kube_resource_report/templates/ingresses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/ingresses.html -------------------------------------------------------------------------------- /kube_resource_report/templates/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/loading.html -------------------------------------------------------------------------------- /kube_resource_report/templates/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/namespaces.html -------------------------------------------------------------------------------- /kube_resource_report/templates/node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/node.html -------------------------------------------------------------------------------- /kube_resource_report/templates/nodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/nodes.html -------------------------------------------------------------------------------- /kube_resource_report/templates/partials/extrahead.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kube_resource_report/templates/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/partials/footer.html -------------------------------------------------------------------------------- /kube_resource_report/templates/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/partials/navbar.html -------------------------------------------------------------------------------- /kube_resource_report/templates/pods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/pods.html -------------------------------------------------------------------------------- /kube_resource_report/templates/routegroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/routegroups.html -------------------------------------------------------------------------------- /kube_resource_report/templates/team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/team.html -------------------------------------------------------------------------------- /kube_resource_report/templates/teams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/templates/teams.html -------------------------------------------------------------------------------- /kube_resource_report/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/utils.py -------------------------------------------------------------------------------- /kube_resource_report/vpa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/kube_resource_report/vpa.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sample-report/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/Dockerfile -------------------------------------------------------------------------------- /sample-report/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/Makefile -------------------------------------------------------------------------------- /sample-report/application-registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/application-registry.py -------------------------------------------------------------------------------- /sample-report/deploy/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/deploy/deployment.yaml -------------------------------------------------------------------------------- /sample-report/deploy/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/deploy/service.yaml -------------------------------------------------------------------------------- /sample-report/generate-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/generate-report.sh -------------------------------------------------------------------------------- /sample-report/output/applications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/applications.html -------------------------------------------------------------------------------- /sample-report/output/cluster-minikube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/cluster-minikube.html -------------------------------------------------------------------------------- /sample-report/output/clusters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/clusters.html -------------------------------------------------------------------------------- /sample-report/output/clusters.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/clusters.tsv -------------------------------------------------------------------------------- /sample-report/output/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/favicon.png -------------------------------------------------------------------------------- /sample-report/output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/index.html -------------------------------------------------------------------------------- /sample-report/output/ingresses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/ingresses.html -------------------------------------------------------------------------------- /sample-report/output/ingresses.tsv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-report/output/kube-resource-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/kube-resource-report.css -------------------------------------------------------------------------------- /sample-report/output/pods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/pods.html -------------------------------------------------------------------------------- /sample-report/output/pods.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/pods.tsv -------------------------------------------------------------------------------- /sample-report/output/slack.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/slack.tsv -------------------------------------------------------------------------------- /sample-report/output/sortable-theme-minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/sortable-theme-minimal.css -------------------------------------------------------------------------------- /sample-report/output/sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/sortable.min.js -------------------------------------------------------------------------------- /sample-report/output/team-.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/team-.html -------------------------------------------------------------------------------- /sample-report/output/team-example-team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/team-example-team.html -------------------------------------------------------------------------------- /sample-report/output/team-hjacobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/team-hjacobs.html -------------------------------------------------------------------------------- /sample-report/output/teams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/sample-report/output/teams.html -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/tests/test_ema.py -------------------------------------------------------------------------------- /tests/test_histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/tests/test_histogram.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/tests/test_metrics.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/tests/test_query.py -------------------------------------------------------------------------------- /tests/test_recommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/tests/test_recommender.py -------------------------------------------------------------------------------- /tests/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/tests/test_report.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=160 3 | ignore=E402,E722 4 | -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/.helmignore -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/Chart.yaml -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/templates/NOTES.txt -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/templates/_helpers.tpl -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/templates/clusterrole.yaml -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/templates/configmap-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/templates/configmap-nginx.yaml -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/templates/configmap.yaml -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/templates/deployment.yaml -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/templates/ingress.yaml -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/templates/service.yaml -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /unsupported/chart/kube-resource-report/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjacobs/kube-resource-report/HEAD/unsupported/chart/kube-resource-report/values.yaml --------------------------------------------------------------------------------