Enable TLS streaming in all the setup.

Signed-off-by: Lantao Liu <lantaol@google.com>
This commit is contained in:
Lantao Liu
2018-04-03 00:17:26 +00:00
parent 6e13a4dd52
commit ad7bffc093
5 changed files with 17 additions and 0 deletions

View File

@@ -13,6 +13,14 @@
- name: "Create a directory for containerd config"
file: path=/etc/containerd state=directory
- name: "Add containerd config file"
blockinfile:
path: /etc/containerd/config.toml
create: yes
block: |
[plugins.cri]
enable_tls_streaming = true
- name: "Start Containerd"
systemd: name=containerd daemon_reload=yes state=started enabled=yes