├── .circleci ├── build.config └── config.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yaml │ ├── feature_request.md │ └── other.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── stale.yml ├── .gitignore ├── .goreleaser.yml ├── .licenserc.yaml ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── cmd ├── root.go └── version.go ├── docs ├── .vuepress │ ├── config-extras.js │ ├── config.js │ ├── public │ │ ├── favicon.png │ │ ├── img │ │ │ ├── fairwinds-logo.svg │ │ │ ├── insights-banner.png │ │ │ └── logo.png │ │ └── scripts │ │ │ ├── marketing.js │ │ │ └── modify.js │ ├── styles │ │ ├── index.styl │ │ └── palette.styl │ └── theme │ │ ├── index.js │ │ └── layouts │ │ └── Layout.vue ├── README.md ├── contributing │ ├── code-of-conduct.md │ └── guide.md ├── desired-versions.md ├── installation.md ├── main-metadata.md ├── package-lock.json ├── package.json ├── quickstart.md └── usage.md ├── go.mod ├── go.sum ├── img └── logo.png ├── main.go └── pkg ├── containers ├── images.go └── images_test.go ├── helm ├── artifacthub.go ├── artifacthub_cached.go ├── artifacthub_cached_sample.json ├── artifacthub_cached_test.go ├── artifacthub_test.go ├── chartrepo.go ├── cluster.go ├── cluster_test.go ├── findscore.go └── findscore_test.go ├── kube └── kube.go └── output ├── file_test.go └── output.go /.circleci/build.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/.circleci/build.config -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/.licenserc.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | ## DO NOT EDIT - Managed by Terraform 2 | * @sudermanjr 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/README.md -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/cmd/version.go -------------------------------------------------------------------------------- /docs/.vuepress/config-extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/.vuepress/config-extras.js -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/.vuepress/public/favicon.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/fairwinds-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/.vuepress/public/img/fairwinds-logo.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/insights-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/.vuepress/public/img/insights-banner.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/logo.png: -------------------------------------------------------------------------------- 1 | ../../../../img/logo.png -------------------------------------------------------------------------------- /docs/.vuepress/public/scripts/marketing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/.vuepress/public/scripts/marketing.js -------------------------------------------------------------------------------- /docs/.vuepress/public/scripts/modify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/.vuepress/public/scripts/modify.js -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extend: '@vuepress/theme-default' 3 | } 4 | -------------------------------------------------------------------------------- /docs/.vuepress/theme/layouts/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/.vuepress/theme/layouts/Layout.vue -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/contributing/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/contributing/code-of-conduct.md -------------------------------------------------------------------------------- /docs/contributing/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/contributing/guide.md -------------------------------------------------------------------------------- /docs/desired-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/desired-versions.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/main-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/main-metadata.md -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/docs/usage.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/go.sum -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/img/logo.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/main.go -------------------------------------------------------------------------------- /pkg/containers/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/containers/images.go -------------------------------------------------------------------------------- /pkg/containers/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/containers/images_test.go -------------------------------------------------------------------------------- /pkg/helm/artifacthub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/helm/artifacthub.go -------------------------------------------------------------------------------- /pkg/helm/artifacthub_cached.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/helm/artifacthub_cached.go -------------------------------------------------------------------------------- /pkg/helm/artifacthub_cached_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/helm/artifacthub_cached_sample.json -------------------------------------------------------------------------------- /pkg/helm/artifacthub_cached_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/helm/artifacthub_cached_test.go -------------------------------------------------------------------------------- /pkg/helm/artifacthub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/helm/artifacthub_test.go -------------------------------------------------------------------------------- /pkg/helm/chartrepo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/helm/chartrepo.go -------------------------------------------------------------------------------- /pkg/helm/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/helm/cluster.go -------------------------------------------------------------------------------- /pkg/helm/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/helm/cluster_test.go -------------------------------------------------------------------------------- /pkg/helm/findscore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/helm/findscore.go -------------------------------------------------------------------------------- /pkg/helm/findscore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/helm/findscore_test.go -------------------------------------------------------------------------------- /pkg/kube/kube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/kube/kube.go -------------------------------------------------------------------------------- /pkg/output/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/output/file_test.go -------------------------------------------------------------------------------- /pkg/output/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairwindsOps/nova/HEAD/pkg/output/output.go --------------------------------------------------------------------------------