Skip to content

Commit ff573cd

Browse files
committed
update the docs
1 parent 7abe23b commit ff573cd

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

docs/guide/controller/setup.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,19 @@ An example policy with the minimum rights can be found at [iam-policy.json](../.
1616
## Installation
1717
You can choose to install ALB ingress controller via Helm or Kubectl
1818
### Helm
19-
1. Install [Helm App Registry plugin](https://coreos.com/apps)
19+
1. Install Helm registry
20+
```bash
21+
helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator
22+
```
2023

2124
2. Install ALB ingress controller
2225

2326
``` bash
24-
helm registry install quay.io/coreos/alb-ingress-controller-helm
27+
helm install incubator/aws-alb-ingress-controller
2528
```
2629

30+
More docs on [hub.helm.sh](https://hub.helm.sh/charts/incubator/aws-alb-ingress-controller)
31+
2732
### Kubectl
2833
1. Download sample ALB ingress controller manifest
2934
``` bash
@@ -40,7 +45,7 @@ You can choose to install ALB ingress controller via Helm or Kubectl
4045
If [ec2metadata](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html) is unavailable from the controller pod, edit the following variables:
4146

4247
- `--aws-vpc-id=vpc-xxxxxx`: vpc ID of the cluster.
43-
- `--aws-region=us-west-1`: AWS region of the cluster.
48+
- `--aws-region=us-west-1`: AWS region of the cluster.
4449

4550
3. Deploy the RBAC roles manifest
4651

@@ -49,19 +54,19 @@ You can choose to install ALB ingress controller via Helm or Kubectl
4954
```
5055

5156
4. Deploy the ALB ingress controller manifest
52-
57+
5358
```bash
5459
kubectl apply -f alb-ingress-controller.yaml
5560
```
5661

5762
5. Verify the deployment was successful and the controller started
58-
63+
5964
```bash
6065
kubectl logs -n kube-system $(kubectl get po -n kube-system | egrep -o alb-ingress[a-zA-Z0-9-]+)
6166
```
62-
67+
6368
Should display output similar to the following.
64-
69+
6570
```console
6671
-------------------------------------------------------------------------------
6772
AWS ALB Ingress controller

0 commit comments

Comments
 (0)