Skip to content

Latest commit

 

History

History
39 lines (34 loc) · 901 Bytes

File metadata and controls

39 lines (34 loc) · 901 Bytes

Removing the AWS Load Balancer Operator

If you no longer need to use the AWS Load Balancer Operator, you can remove the Operator and delete any related roles and policies.

Procedure
  1. Delete the Operator Subscription:

    $ oc delete subscription aws-load-balancer-operator -n aws-load-balancer-operator
  2. Detach and delete the relevant AWS IAM roles:

    $ aws iam detach-role-policy \
      --role-name "<cluster_id>-alb-operator" \
      --policy-arn <operator_policy_arn>
    $ aws iam delete-role \
      --role-name "<cluster_id>-alb-operator"
  3. Delete the AWS IAM policy:

    $ aws iam delete-policy --policy-arn <operator_policy_arn>