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: README.md
+12
Original file line number
Diff line number
Diff line change
@@ -141,6 +141,18 @@ Then,
141
141
* to run integration tests: `make test-integ`
142
142
* to run smoke tests: `make test-smoke`
143
143
144
+
### Troubleshooting
145
+
While running integration tests, you might encounter the Docker Hub rate limit error with the following body:
146
+
```
147
+
You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limits
148
+
```
149
+
To fix the above issue, consider authenticating to a Docker Hub account by setting the Docker Hub credentials as below CodeBuild environment variables.
150
+
```shell script
151
+
DOCKERHUB_USERNAME=<dockerhub username>
152
+
DOCKERHUB_PASSWORD=<dockerhub password>
153
+
```
154
+
Recommended way is to set the Docker Hub credentials in CodeBuild job by retrieving them from AWS Secrets Manager.
155
+
144
156
## Security
145
157
146
158
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
0 commit comments