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
Copy file name to clipboardExpand all lines: docs/faqs.md
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,32 @@ roleRef:
57
57
58
58
The `USER_ACCOUNT` above should be your Google Cloud user email.
59
59
60
+
**For AWS EKS users:**
61
+
62
+
If you encounter a similar issue on AWS EKS, with an error message like:
63
+
```
64
+
Error from server (Forbidden): error when creating "test.yaml": admission webhook "vauth.kb.io" denied the request: arn:aws:iam::xxxxxx:user/xxxx is forbidden on namespace xxxxxx
65
+
```
66
+
You can create a `ClusterRoleBinding` to grant the necessary permissions to your IAM user or role. Ensure that you have a `ClusterRole` named `chaos-mesh-admin` with the required permissions, or adjust the `roleRef.name` accordingly.
67
+
68
+
```yaml
69
+
apiVersion: rbac.authorization.k8s.io/v1
70
+
kind: ClusterRoleBinding
71
+
metadata:
72
+
name: chaos-mesh-admin-binding
73
+
subjects:
74
+
- kind: User
75
+
name: arn:aws:iam::<AWS_ACCOUNT_ID>:user/<USERNAME> # Replace with your IAM user ARN
name: chaos-mesh-admin # Ensure this ClusterRole exists and has appropriate permissions
82
+
apiGroup: rbac.authorization.k8s.io
83
+
```
84
+
Replace `<AWS_ACCOUNT_ID>` and `<USERNAME>` (or `<ROLE_NAME>`) with your specific AWS account ID and IAM user name (or role name).
85
+
60
86
### Daemon throws an error similar to `version 1.41 is too new. The maximum supported API version is 1.39`
61
87
62
88
This indicates that the maximum API version that the Docker daemon can accept is `1.39`, but the client in `chaos-daemon` uses `1.41` by default. You can choose the following options to solve this problem:
0 commit comments