fix: asf labels (#18)

1 file changed
tree: 7d17c5d5c34a9e967d099d2bde1c285ba8773191
  1. chart/
  2. .asf.yaml
  3. .gitignore
  4. README.md
README.md

Apache APISIX Helm Charts

Dependencies

Update the dependency chart

$ helm repo add bitnami https://charts.bitnami.com/bitnami
$ helm dependency update ./chart/apisix

Install

$ helm install apisix ./chart/apisix -n default

Uninstall

helm uninstall apisix ./chart/apisix -n default

FAQ

  1. How to install APISIX only?

The Charts will install etcd 3.4.14 by default. If you want to install Apache APISIX only, please set etcd.enabled=false and set etcd.host=http://your_etcd_address:2379.

Please use the FQDN address or the IP of the etcd.

$ helm install apisix ./chart/apisix -n default \
    --set etcd.enabled=false \
    --set etcd.host=http://your_etcd_address:2379
  1. Why get 403 when I access Apache APISIX admin api?

We can define allow.ipList in CIDR.

$ helm install apisix ./chart/apisix -n default \
    --set allow.ipList="10.22.100.12/8" \
    --set allow.ipList="172.0.0.0/24"

If you want to allow all IPs for a quick test, just set allow.ipList=""

$ helm install apisix ./chart/apisix -n default \
    --set allow.ipList=""

Seeking help