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
@@ -161,6 +161,18 @@ Then,
161
161
* to run integration tests: `make test-integ`
162
162
* to run smoke tests: `make test-smoke`
163
163
164
+
### Troubleshooting
165
+
166
+
While running integration tests, you might encounter the Docker Hub rate limit error with the following body:
167
+
```
168
+
You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limits
169
+
```
170
+
To fix the above issue, consider authenticating to a Docker Hub account by setting the Docker Hub credentials as below CodeBuild environment variables.
171
+
```shell script
172
+
DOCKERHUB_USERNAME=<dockerhub username>
173
+
DOCKERHUB_PASSWORD=<dockerhub password>
174
+
```
175
+
Recommended way is to set the Docker Hub credentials in CodeBuild job by retrieving them from AWS Secrets Manager.
164
176
## Security
165
177
166
178
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