You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by mr...@apache.org on 2017/06/16 17:39:09 UTC

[incubator-openwhisk-deploy-kube] branch master updated: Allow more time for Kafka to start (#4)

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

mrutkowski 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 1fbcca9  Allow more time for Kafka to start (#4)
1fbcca9 is described below

commit 1fbcca9995a63869c635570aa14bef59e7f03df3
Author: Toby Crawley <to...@tcrawley.org>
AuthorDate: Fri Jun 16 13:39:07 2017 -0400

    Allow more time for Kafka to start (#4)
    
    Locally with a fresh environment (with no docker images downloaded) the
    default loop count isn't enough to ensure that the kafka pod is fully
    started.
---
 ansible-kube/roles/kafka/tasks/deploy.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ansible-kube/roles/kafka/tasks/deploy.yml b/ansible-kube/roles/kafka/tasks/deploy.yml
index 4b46c37..8a4a321 100644
--- a/ansible-kube/roles/kafka/tasks/deploy.yml
+++ b/ansible-kube/roles/kafka/tasks/deploy.yml
@@ -41,7 +41,7 @@
   shell: "kubectl -n openwhisk logs {{ item[0] }} -c kafka"
   register: result
   until: ('[Kafka Server 0], started' in result.stdout)
-  retries: 10
+  retries: 36
   delay: 5
   with_nested:
     - ["{{ kafka_pods }}"]

-- 
To stop receiving notification emails like this one, please contact
['"commits@openwhisk.apache.org" <co...@openwhisk.apache.org>'].