You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description of changes:
Includes changes from #98
Testing:
manually install and uninstall
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
--query "cluster.identity.oidc.issuer" --output text | cut -c9-)
83
83
```
84
84
@@ -110,6 +110,21 @@ printf '{
110
110
'> ./trust.json
111
111
```
112
112
113
+
Updating an ApplicationAutoscaling ScalableTarget requires the following permissions. Create a file named pass_role_policy.json to create the policy required for the IAM role.
114
+
115
+
```sh
116
+
printf'{
117
+
"Version": "2012-10-17",
118
+
"Statement": [
119
+
{
120
+
"Effect": "Allow",
121
+
"Action": "iam:PassRole",
122
+
"Resource": "*"
123
+
}
124
+
]
125
+
}
126
+
'> ./pass_role_policy.json
127
+
```
113
128
114
129
Run the following command to create a role with the trust relationship defined in `trust.json`. This role enables the Amazon EKS cluster to get and refresh credentials from IAM.
0 commit comments