Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update helm chart installation instructions to use service.type #2360

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/en/latest/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ You can change the Admin API key in two ways:

You will need to get the apisix-gateway service an external IP assigned for it to reflect on the Ingress's status.

* While installing APISIX helm chart make sure to override gateway type with `--set gateway.type=LoadBalancer`.
* While installing APISIX helm chart make sure to override gateway type with `--set service.type=LoadBalancer`.

* Also make sure to pass ingressPublishService while installing Ingress controller with `--set ingress-controller.config.ingressPublishService=<namespace/service-name>`. If namespace is not specified then `default` namespace will be chosen.

Expand Down
2 changes: 1 addition & 1 deletion docs/en/latest/deployments/ack.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ helm repo update
# We use Apisix 3.0 in this example. If you're using Apisix v2.x, please set to v2
ADMIN_API_VERSION=v3
helm install apisix apisix/apisix \
--set gateway.type=LoadBalancer \
--set service.type=LoadBalancer \
--set ingress-controller.enabled=true \
--set etcd.persistence.storageClass="alicloud-disk-ssd" \
--set etcd.persistence.size="20Gi" \
Expand Down
4 changes: 2 additions & 2 deletions docs/en/latest/deployments/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ helm repo update
# We use Apisix 3.0 in this example. If you're using Apisix v2.x, please set to v2
ADMIN_API_VERSION=v3
helm install apisix apisix/apisix \
--set gateway.type=LoadBalancer \
--set service.type=LoadBalancer \
--set ingress-controller.enabled=true \
--create-namespace \
--namespace ingress-apisix \
Expand All @@ -64,7 +64,7 @@ By default AWS provisions a [Classic LoadBalancer](https://docs.aws.amazon.com/e
# We use Apisix 3.0 in this example. If you're using Apisix v2.x, please set to v2
ADMIN_API_VERSION=v3
helm install apisix apisix/apisix \
--set gateway.type=LoadBalancer \
--set service.type=LoadBalancer \
--set ingress-controller.enabled=true \
--create-namespace \
--namespace ingress-apisix \
Expand Down
2 changes: 1 addition & 1 deletion docs/en/latest/deployments/azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ helm repo update
# We use Apisix 3.0 in this example. If you're using Apisix v2.x, please set to v2
ADMIN_API_VERSION=v3
helm install apisix apisix/apisix \
--set gateway.type=LoadBalancer \
--set service.type=LoadBalancer \
--set ingress-controller.enabled=true \
--create-namespace \
--namespace ingress-apisix \
Expand Down
2 changes: 1 addition & 1 deletion docs/en/latest/deployments/gke.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ helm repo update
# We use Apisix 3.0 in this example. If you're using Apisix v2.x, please set to v2
ADMIN_API_VERSION=v3
helm install apisix apisix/apisix \
--set gateway.type=LoadBalancer \
--set service.type=LoadBalancer \
--set ingress-controller.enabled=true \
--create-namespace \
--namespace ingress-apisix \
Expand Down
2 changes: 1 addition & 1 deletion docs/en/latest/deployments/tke.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ helm repo update
# We use Apisix 3.0 in this example. If you're using Apisix v2.x, please set to v2
ADMIN_API_VERSION=v3
helm install apisix apisix/apisix \
--set gateway.type=LoadBalancer \
--set service.type=LoadBalancer \
--set ingress-controller.enabled=true \
--set etcd.persistence.size="10Gi" \
--create-namespace \
Expand Down