OSDN Git Service

update documents.
authorwhitestar <whitestar@users.osdn.me>
Mon, 16 Jul 2018 11:40:54 +0000 (20:40 +0900)
committerwhitestar <whitestar@users.osdn.me>
Mon, 16 Jul 2018 11:40:54 +0000 (20:40 +0900)
cookbooks/kata-containers/CHANGELOG.md
cookbooks/kata-containers/README.md
cookbooks/kata-containers/version

index cb4cc99..1e220c4 100644 (file)
@@ -1,5 +1,9 @@
 # kata-containers CHANGELOG
 
+0.2.1
+-----
+- update documents.
+
 0.2.0
 -----
 - add RHEL family support.
index ec3c61a..ed06695 100644 (file)
@@ -48,6 +48,20 @@ description 'Kata Containers'
 
 run_list(
   'recipe[kata-containers::default]',
+  # with docker-grid cookbook
+  'recipe[docker-grid::engine]',
+)
+
+override_attributes(
+  # with docker-grid cookbook
+  'docker-grid' => {
+    'engine' => {
+      'daemon_extra_options' => [
+        '--add-runtime kata-runtime=/usr/bin/kata-runtime',
+        '--default-runtime=kata-runtime'
+      ].join(' '),
+    },
+  },
 )
 ```