You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Server Version: version.Info{Major:"1", Minor:"2", GitVersion:"v1.2.3", GitCommit:"882d296a99218da8f6b2a340eb0e81c69e66ecc7", GitTreeState:"clean"}
33
-
```
34
-
35
29
## Add the Deis Chart Repository
36
30
37
31
The [Deis Chart Repository](https://github.com/deis/charts) contains everything you
@@ -68,15 +62,52 @@ If you would like `kubectl` to automatically update as the pod states change, ru
68
62
$ kubectl get pods --namespace=deis -w
69
63
```
70
64
65
+
Depending on the order in which the Workflow components start, you may see a few components restart. This is common during the installation process, if a component's dependencies are not yet available the component will exit and Kubernetes will automatically restart the containers.
66
+
67
+
Here, you can see that controller, builder and registry all took a few loops before there were able to start:
68
+
```
69
+
$ kubectl get pods --namespace=deis
70
+
NAME READY STATUS RESTARTS AGE
71
+
deis-builder-hy3xv 1/1 Running 5 5m
72
+
deis-controller-g3cu8 1/1 Running 5 5m
73
+
deis-database-rad1o 1/1 Running 0 5m
74
+
deis-logger-fluentd-1v8uk 1/1 Running 0 5m
75
+
deis-logger-fluentd-esm60 1/1 Running 0 5m
76
+
deis-logger-sm8b3 1/1 Running 0 5m
77
+
deis-minio-4ww3t 1/1 Running 0 5m
78
+
deis-registry-asozo 1/1 Running 1 5m
79
+
deis-router-k1ond 1/1 Running 0 5m
80
+
deis-workflow-manager-68nu6 1/1 Running 0 5m
81
+
```
82
+
71
83
Once you see all of the pods in the `READY` state, Deis Workflow is up and running!
72
84
73
85
## Configure your AWS Load Balancer
74
86
75
-
After installing Workflow on your cluster, you'll need to [configure your load balancer][lb].
76
-
Following this step is especially important on AWS because the default idle timeout for connections
77
-
on the Elastic Load Balancer is too low for the [Builder][] to finish a `git push`operation.
87
+
After installing Workflow on your cluster, you will need to adjust your load balancer configuration.
88
+
By default, the connection timeout for Elastic Load Blancers is 60 seconds. Unfortunately, this timeout is too short for
89
+
long running connections when using `git push`functionality of Deis Workflow.
78
90
79
-
Next, [configure dns](dns.md) so you can register your first user.
91
+
First, find the ELB that was automatically provisioned for the Deis Workflow edge router:
0 commit comments