APISIX Digital Ocean Setup

Helm repo setup

    helm repo add apisix https://charts.apiseven.com
    helm repo add bitnami https://charts.bitnami.com/bitnami
    helm repo update

    Set to version 3

    #  We use Apisix 3.0 in this example. If you're using Apisix v2.x, please set to v2
    ADMIN_API_VERSION=v3

    Install APISIX

    Make sure you have access to Kubernetes cluster using kubeconfig file

    helm upgrade --install apisix apisix/apisix \
      --set gateway.type=LoadBalancer \
      --set service.type=LoadBalancer \
      --set ingress-controller.enabled=true \
      --create-namespace \
      --namespace ingress-apisix \
      --set ingress-controller.config.apisix.serviceNamespace=ingress-apisix \
      --set ingress-controller.config.apisix.adminAPIVersion=$ADMIN_API_VERSION

    Leave a Comment

    Scroll to Top