├── .github └── workflows │ └── lint-test.yaml ├── .helmignore ├── Chart.yaml ├── LICENSE ├── README.md ├── templates ├── NOTES.txt ├── _helpers.tpl ├── configmap.yaml ├── deployment-statefulset.yaml ├── extra-list.yaml ├── hpa.yaml ├── ingress.yaml ├── job.yaml ├── networkpolicy.yaml ├── pdb.yaml ├── prometheusrules.yaml ├── pvc.yaml ├── secret.yaml ├── service-headless.yaml ├── service.yaml ├── serviceaccount.yaml ├── servicemonitor.yaml ├── test │ └── test-nacos.yaml └── tls-secrets.yaml └── values.yaml /.github/workflows/lint-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/.github/workflows/lint-test.yaml -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/.helmignore -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/README.md -------------------------------------------------------------------------------- /templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/NOTES.txt -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/configmap.yaml -------------------------------------------------------------------------------- /templates/deployment-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/deployment-statefulset.yaml -------------------------------------------------------------------------------- /templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/extra-list.yaml -------------------------------------------------------------------------------- /templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/hpa.yaml -------------------------------------------------------------------------------- /templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/ingress.yaml -------------------------------------------------------------------------------- /templates/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/job.yaml -------------------------------------------------------------------------------- /templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/pdb.yaml -------------------------------------------------------------------------------- /templates/prometheusrules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/prometheusrules.yaml -------------------------------------------------------------------------------- /templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/pvc.yaml -------------------------------------------------------------------------------- /templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/secret.yaml -------------------------------------------------------------------------------- /templates/service-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/service-headless.yaml -------------------------------------------------------------------------------- /templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/service.yaml -------------------------------------------------------------------------------- /templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /templates/test/test-nacos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/test/test-nacos.yaml -------------------------------------------------------------------------------- /templates/tls-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/templates/tls-secrets.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygqygq2/nacos-helm/HEAD/values.yaml --------------------------------------------------------------------------------