File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
helm/aws-load-balancer-controller Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -109,9 +109,15 @@ The old controller must be uninstalled completely before installing the new vers
109
109
If you had installed the previous version via kubectl, uninstall as follows
110
110
``` shell script
111
111
$ kubectl delete deployment -n kube-system alb-ingress-controller
112
- # Find the version of the current controller
112
+ $ kubectl delete clusterRole alb-ingress-controller
113
+ $ kubectl delete ClusterRoleBinding alb-ingress-controller
114
+ $ kubectl delete ServiceAccount -n kube-system alb-ingress-controller
115
+
116
+ # Alternatively you can find the version of the controller and delete as follows
113
117
$ kubectl describe deployment -n kube-system alb-ingress-controller | grep Image
114
118
Image: docker.io/amazon/aws-alb-ingress-controller:v1.1.8
119
+ # You can delete the deployment now
120
+ $ kubectl delete deployment -n kube-system alb-ingress-controller
115
121
# In this case, the version is v1.1.8, the rbac roles can be removed as follows
116
122
$ kubectl delete -f https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.8/docs/examples/rbac-role.yaml
117
123
```
You can’t perform that action at this time.
0 commit comments