├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── custom.md │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto_assign.yml ├── ct.yaml ├── dependabot.yml └── workflows │ ├── auto-assign.yml │ ├── lint-test.yml │ ├── pr-labels.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .pre-commit-config.yaml ├── INSTALL.md ├── LICENSE ├── README.md └── charts ├── README.md ├── dragonfly-stack ├── .helmignore ├── Chart.yaml ├── README.md ├── README.md.gotmpl └── values.yaml ├── dragonfly ├── .helmignore ├── Chart.yaml ├── README.md ├── README.md.gotmpl ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── client │ │ ├── client-configmap.yaml │ │ ├── client-daemonset.yaml │ │ ├── dfinit-configmap.yaml │ │ ├── metrics-svc.yaml │ │ ├── prometheusrule.yaml │ │ └── servicemonitor.yaml │ ├── manager │ │ ├── manager-configmap.yaml │ │ ├── manager-deployment.yaml │ │ ├── manager-ingress.yaml │ │ ├── manager-svc.yaml │ │ ├── metrics-svc.yaml │ │ ├── prometheusrule.yaml │ │ └── servicemonitor.yaml │ ├── scheduler │ │ ├── metrics-svc.yaml │ │ ├── prometheusrule.yaml │ │ ├── scheduler-configmap.yaml │ │ ├── scheduler-statefulset.yaml │ │ ├── scheduler-svc.yaml │ │ └── servicemonitor.yaml │ └── seed-client │ │ ├── metrics-svc.yaml │ │ ├── prometheusrule.yaml │ │ ├── seed-client-configmap.yaml │ │ ├── seed-client-statefulset.yaml │ │ ├── seed-client-svc.yaml │ │ └── servicemonitor.yaml └── values.yaml └── nydus-snapshotter ├── .helmignore ├── Chart.yaml ├── README.md ├── README.md.gotmpl ├── templates ├── NOTES.txt ├── _helpers.tpl └── nydus-snapshotter │ ├── snapshotter-configmap.yaml │ ├── snapshotter-daemonset.yaml │ └── snapshotter-rbac.yaml └── values.yaml /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.github/ct.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.github/workflows/auto-assign.yml -------------------------------------------------------------------------------- /.github/workflows/lint-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.github/workflows/lint-test.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.github/workflows/pr-labels.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/README.md -------------------------------------------------------------------------------- /charts/dragonfly-stack/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly-stack/.helmignore -------------------------------------------------------------------------------- /charts/dragonfly-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly-stack/Chart.yaml -------------------------------------------------------------------------------- /charts/dragonfly-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly-stack/README.md -------------------------------------------------------------------------------- /charts/dragonfly-stack/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly-stack/README.md.gotmpl -------------------------------------------------------------------------------- /charts/dragonfly-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly-stack/values.yaml -------------------------------------------------------------------------------- /charts/dragonfly/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/.helmignore -------------------------------------------------------------------------------- /charts/dragonfly/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/Chart.yaml -------------------------------------------------------------------------------- /charts/dragonfly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/README.md -------------------------------------------------------------------------------- /charts/dragonfly/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/README.md.gotmpl -------------------------------------------------------------------------------- /charts/dragonfly/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/dragonfly/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/dragonfly/templates/client/client-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/client/client-configmap.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/client/client-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/client/client-daemonset.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/client/dfinit-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/client/dfinit-configmap.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/client/metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/client/metrics-svc.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/client/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/client/prometheusrule.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/client/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/client/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/manager/manager-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/manager/manager-configmap.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/manager/manager-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/manager/manager-deployment.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/manager/manager-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/manager/manager-ingress.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/manager/manager-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/manager/manager-svc.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/manager/metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/manager/metrics-svc.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/manager/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/manager/prometheusrule.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/manager/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/manager/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/scheduler/metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/scheduler/metrics-svc.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/scheduler/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/scheduler/prometheusrule.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/scheduler/scheduler-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/scheduler/scheduler-configmap.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/scheduler/scheduler-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/scheduler/scheduler-statefulset.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/scheduler/scheduler-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/scheduler/scheduler-svc.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/scheduler/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/scheduler/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/seed-client/metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/seed-client/metrics-svc.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/seed-client/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/seed-client/prometheusrule.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/seed-client/seed-client-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/seed-client/seed-client-configmap.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/seed-client/seed-client-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/seed-client/seed-client-statefulset.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/seed-client/seed-client-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/seed-client/seed-client-svc.yaml -------------------------------------------------------------------------------- /charts/dragonfly/templates/seed-client/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/templates/seed-client/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/dragonfly/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/dragonfly/values.yaml -------------------------------------------------------------------------------- /charts/nydus-snapshotter/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/nydus-snapshotter/.helmignore -------------------------------------------------------------------------------- /charts/nydus-snapshotter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/nydus-snapshotter/Chart.yaml -------------------------------------------------------------------------------- /charts/nydus-snapshotter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/nydus-snapshotter/README.md -------------------------------------------------------------------------------- /charts/nydus-snapshotter/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/nydus-snapshotter/README.md.gotmpl -------------------------------------------------------------------------------- /charts/nydus-snapshotter/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/nydus-snapshotter/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/nydus-snapshotter/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/nydus-snapshotter/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/nydus-snapshotter/templates/nydus-snapshotter/snapshotter-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/nydus-snapshotter/templates/nydus-snapshotter/snapshotter-configmap.yaml -------------------------------------------------------------------------------- /charts/nydus-snapshotter/templates/nydus-snapshotter/snapshotter-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/nydus-snapshotter/templates/nydus-snapshotter/snapshotter-daemonset.yaml -------------------------------------------------------------------------------- /charts/nydus-snapshotter/templates/nydus-snapshotter/snapshotter-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/nydus-snapshotter/templates/nydus-snapshotter/snapshotter-rbac.yaml -------------------------------------------------------------------------------- /charts/nydus-snapshotter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonflyoss/helm-charts/HEAD/charts/nydus-snapshotter/values.yaml --------------------------------------------------------------------------------