├── .gitignore ├── Makefile ├── README.md ├── grafana ├── .helmignore ├── Chart.yaml ├── OWNERS ├── README.md ├── dashboards │ └── custom-dashboard.json ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── configmap-dashboard-provider.yaml │ ├── configmap.yaml │ ├── dashboards-json-configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── podsecuritypolicy.yaml │ ├── pvc.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── secret.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ ├── test-configmap.yaml │ │ ├── test-podsecuritypolicy.yaml │ │ ├── test-role.yaml │ │ ├── test-rolebinding.yaml │ │ ├── test-serviceaccount.yaml │ │ └── test.yaml └── values.yaml ├── tools ├── helm └── tiller └── values.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | inspec.lock 3 | kubeconfig.yaml 4 | *.tar.gz 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/README.md -------------------------------------------------------------------------------- /grafana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/.helmignore -------------------------------------------------------------------------------- /grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/Chart.yaml -------------------------------------------------------------------------------- /grafana/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/OWNERS -------------------------------------------------------------------------------- /grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/README.md -------------------------------------------------------------------------------- /grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /grafana/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/NOTES.txt -------------------------------------------------------------------------------- /grafana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/_helpers.tpl -------------------------------------------------------------------------------- /grafana/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/clusterrole.yaml -------------------------------------------------------------------------------- /grafana/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /grafana/templates/configmap-dashboard-provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/configmap-dashboard-provider.yaml -------------------------------------------------------------------------------- /grafana/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/configmap.yaml -------------------------------------------------------------------------------- /grafana/templates/dashboards-json-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/dashboards-json-configmap.yaml -------------------------------------------------------------------------------- /grafana/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/deployment.yaml -------------------------------------------------------------------------------- /grafana/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/ingress.yaml -------------------------------------------------------------------------------- /grafana/templates/podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/podsecuritypolicy.yaml -------------------------------------------------------------------------------- /grafana/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/pvc.yaml -------------------------------------------------------------------------------- /grafana/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/role.yaml -------------------------------------------------------------------------------- /grafana/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/rolebinding.yaml -------------------------------------------------------------------------------- /grafana/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/secret.yaml -------------------------------------------------------------------------------- /grafana/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/service.yaml -------------------------------------------------------------------------------- /grafana/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /grafana/templates/tests/test-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/tests/test-configmap.yaml -------------------------------------------------------------------------------- /grafana/templates/tests/test-podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/tests/test-podsecuritypolicy.yaml -------------------------------------------------------------------------------- /grafana/templates/tests/test-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/tests/test-role.yaml -------------------------------------------------------------------------------- /grafana/templates/tests/test-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/tests/test-rolebinding.yaml -------------------------------------------------------------------------------- /grafana/templates/tests/test-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/tests/test-serviceaccount.yaml -------------------------------------------------------------------------------- /grafana/templates/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/templates/tests/test.yaml -------------------------------------------------------------------------------- /grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/grafana/values.yaml -------------------------------------------------------------------------------- /tools/helm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/tools/helm -------------------------------------------------------------------------------- /tools/tiller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubedex/chart-test-template/HEAD/tools/tiller -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------