├── .asf.yaml ├── .github └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── charts ├── apisix-dashboard │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── charts │ │ └── .gitkeep │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── apisix-ingress-controller │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── charts │ │ └── .gitkeep │ ├── crds │ │ ├── apisixic-crds.yaml │ │ └── gwapi-crds.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cluster_role.yaml │ │ ├── cluster_role_binding.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── gatewayproxy.yaml │ │ ├── ingress-class.yaml │ │ ├── pdb.yaml │ │ ├── role.yaml │ │ ├── role_binding.yaml │ │ ├── service-account.yaml │ │ ├── service.yaml │ │ ├── servicemonitor.yaml │ │ └── webhook.yaml │ └── values.yaml └── apisix │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── charts │ ├── apisix-ingress-controller-1.0.6.tgz │ └── etcd-12.0.18.tgz │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── apisix-config-cm.yml │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── etcd-secret.yaml │ ├── extra-list.yaml │ ├── hpa.yaml │ ├── ingress-admin.yaml │ ├── ingress-control.yaml │ ├── ingress.yaml │ ├── pdb.yaml │ ├── service-admin.yaml │ ├── service-control.yaml │ ├── service-gateway.yaml │ ├── service-metrics.yaml │ ├── service-monitor.yaml │ └── serviceaccount.yaml │ ├── values.schema.json │ └── values.yaml ├── docs └── en │ └── latest │ ├── FAQ.md │ ├── apisix-dashboard.md │ ├── apisix-ingress-controller.md │ ├── apisix.md │ └── config.json └── test └── e2e └── kind.yaml /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/README.md -------------------------------------------------------------------------------- /charts/apisix-dashboard/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/.helmignore -------------------------------------------------------------------------------- /charts/apisix-dashboard/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/Chart.yaml -------------------------------------------------------------------------------- /charts/apisix-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/README.md -------------------------------------------------------------------------------- /charts/apisix-dashboard/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/README.md.gotmpl -------------------------------------------------------------------------------- /charts/apisix-dashboard/charts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/apisix-dashboard/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/apisix-dashboard/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/apisix-dashboard/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/apisix-dashboard/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/apisix-dashboard/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/apisix-dashboard/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/apisix-dashboard/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/templates/service.yaml -------------------------------------------------------------------------------- /charts/apisix-dashboard/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/apisix-dashboard/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/apisix-dashboard/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-dashboard/values.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/.helmignore -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/Chart.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/README.md -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/README.md.gotmpl -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/charts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/crds/apisixic-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/crds/apisixic-crds.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/crds/gwapi-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/crds/gwapi-crds.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/cluster_role.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/cluster_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/cluster_role_binding.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/gatewayproxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/gatewayproxy.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/ingress-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/ingress-class.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/pdb.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/role.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/role_binding.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/service-account.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/service.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/templates/webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/templates/webhook.yaml -------------------------------------------------------------------------------- /charts/apisix-ingress-controller/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix-ingress-controller/values.yaml -------------------------------------------------------------------------------- /charts/apisix/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/.helmignore -------------------------------------------------------------------------------- /charts/apisix/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/Chart.lock -------------------------------------------------------------------------------- /charts/apisix/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/Chart.yaml -------------------------------------------------------------------------------- /charts/apisix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/README.md -------------------------------------------------------------------------------- /charts/apisix/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/README.md.gotmpl -------------------------------------------------------------------------------- /charts/apisix/charts/apisix-ingress-controller-1.0.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/charts/apisix-ingress-controller-1.0.6.tgz -------------------------------------------------------------------------------- /charts/apisix/charts/etcd-12.0.18.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/charts/etcd-12.0.18.tgz -------------------------------------------------------------------------------- /charts/apisix/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/apisix/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/apisix/templates/apisix-config-cm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/apisix-config-cm.yml -------------------------------------------------------------------------------- /charts/apisix/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/etcd-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/etcd-secret.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/extra-list.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/ingress-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/ingress-admin.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/ingress-control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/ingress-control.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/pdb.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/service-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/service-admin.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/service-control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/service-control.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/service-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/service-gateway.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/service-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/service-metrics.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/service-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/service-monitor.yaml -------------------------------------------------------------------------------- /charts/apisix/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/apisix/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/values.schema.json -------------------------------------------------------------------------------- /charts/apisix/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/charts/apisix/values.yaml -------------------------------------------------------------------------------- /docs/en/latest/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/docs/en/latest/FAQ.md -------------------------------------------------------------------------------- /docs/en/latest/apisix-dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/docs/en/latest/apisix-dashboard.md -------------------------------------------------------------------------------- /docs/en/latest/apisix-ingress-controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/docs/en/latest/apisix-ingress-controller.md -------------------------------------------------------------------------------- /docs/en/latest/apisix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/docs/en/latest/apisix.md -------------------------------------------------------------------------------- /docs/en/latest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/docs/en/latest/config.json -------------------------------------------------------------------------------- /test/e2e/kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/apisix-helm-chart/HEAD/test/e2e/kind.yaml --------------------------------------------------------------------------------