This is an automated email from the ASF dual-hosted git repository.

csantanapr pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-openwhisk-deploy-kube.git


The following commit(s) were added to refs/heads/master by this push:
     new a1ce67f  Document that you must use KubernetesContainerFactory on IKS 
1.11+ (#429)
a1ce67f is described below

commit a1ce67f82d4378959db712a335bb5faca5d6723f
Author: David Grove <[email protected]>
AuthorDate: Sat Feb 23 06:15:52 2019 -0500

    Document that you must use KubernetesContainerFactory on IKS 1.11+ (#429)
---
 docs/k8s-ibm-public.md | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/docs/k8s-ibm-public.md b/docs/k8s-ibm-public.md
index ee6e7b9..e1584a7 100644
--- a/docs/k8s-ibm-public.md
+++ b/docs/k8s-ibm-public.md
@@ -104,12 +104,22 @@ whisk:
           'X-Request-ID' $request_id;
         }
 
+# not required on IKS 1.10; required on IKS 1.11 and newer
+invoker:
+  containerFactory:
+    impl: kubernetes
+
 k8s:
   persistence:
     hasDefaultStorageClass: false
     explicitStorageClass: default
 ```
 
+Starting with IKS 1.11, the underlying container runtime is now
+containerd instead of docker. As a result, you cannot use the
+DockerContainerFactory on IKS and must use the
+KubernetesContainerFactory.
+
 IKS does not provide a properly configured DefaultStorageClass,
 instead you need to tell the Helm chart to use the `default`
 StorageClassName as shown above. This StorageClass does have

Reply via email to