controller
controller copied to clipboard
Deis Workflow Controller (API)
Adding the lifecycle hooks feature to the deis-controller api. This allows users to attach lifecycle postStart and preStop hook commands to kubernetes api via the deis api. Example of a...
I created a deis workflow(v2.3) 1 year ago. but its showing no apps when i run `deis apps:list` how to debug it ?
The current one needs to be replaced since we have started moving more and more logic from the scheduling code and up into the relevant models
Right now we do not restrict the number of times people can fail a login attempt.
when we try to do a config:set on an app with 30-40 pods the controller worker thread is timing out because the operation is taking more than 20min(default timeout of...
I would like to be able to assign a kubernetes namespace when I use deis create. It appears that the namespace is always derived from the application name. The advantage...
https://github.com/deis/controller/pull/792 has uncovered some inconsistencies in our data model on `Release`. ### Problem Currently things are set up so that `Release` is the child object of `Config` and `Build` via...
Deployments support maxSurge and maxUnavailable when it comes to the RollingUpdate of pods maxSurge is taken care of with the `DEPLOY_BATCHES` but maxUnavailable is assumed `0` to be in sync...
Right now it is possible to only set integer for Deployments around maxSurge and maxUnavailable Kubernetes Deployments support taking % as well, however this would require reworking some of the...
Deployments have RollingUpdate and Recreate. Deis only supports RollingUpdate right now