Skip to content

Commit

Permalink
Allow parallel image pulls in kubelet (#795)
Browse files Browse the repository at this point in the history
  • Loading branch information
yulianedyalkova authored Sep 30, 2020
1 parent bf519ce commit a95fcee
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project's packages adheres to [Semantic Versioning](http://semver.org/s

## [Unreleased]

### Changed

- Allow parallel download of images in kubelet templates

## [7.1.1] - 2020-09-21

- Prevent calico from installing CNI binaries if AWS CNI is enabled
Expand Down
3 changes: 3 additions & 0 deletions files/config/kubelet-master.yaml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,6 @@ tlsCipherSuites:
- TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305
- TLS_RSA_WITH_AES_256_GCM_SHA384
- TLS_RSA_WITH_AES_128_GCM_SHA256
serializeImagePulls: false
registryPullQPS: 2
registryBurst: 3
3 changes: 3 additions & 0 deletions files/config/kubelet-worker.yaml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,6 @@ tlsCipherSuites:
- TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305
- TLS_RSA_WITH_AES_256_GCM_SHA384
- TLS_RSA_WITH_AES_128_GCM_SHA256
serializeImagePulls: false
registryPullQPS: 2
registryBurst: 3

0 comments on commit a95fcee

Please sign in to comment.