Deis Bot

Results 283 comments of Deis Bot

_From @bacongobbler on February 24, 2016 23:9_ FYI this won't be immmediately implemented in Deis v2 as we are targeting for v1 compatibility while rebasing on top of kubernetes, so...

_From @sheerun on January 18, 2017 20:1_ My ugly workaround: > export NAMESPACE=xxx PROCESS=web && kubectl exec -it --namespace $NAMESPACE "$(kubectl get pods --namespace $NAMESPACE -o name | grep $NAMESPACE-$PROCESS...

_From @bacongobbler on January 18, 2017 20:6_ @sheerun you can simplify that bash incantation with `-- /runner/init rails c` if you're using Heroku buildpacks.

_From @bacongobbler on January 18, 2017 20:7_ also see https://github.com/deis/controller/pull/1162.

_From @sheerun on January 18, 2017 21:4_ @bacongobbler thanks! here's my new `deis-run` command: > deis-run() { export NAMESPACE="$1" && PROCESS="$2" && shift && shift && kubectl exec -it --namespace...

_From @bfosberry on May 21, 2015 21:5_ This also happens should it be an invalid ssh key: ``` May 21 21:04:35 ip-10-12-13-195.ec2.internal sh[3317]: Traceback (most recent call last): May 21...

_From @carmstrong on May 21, 2015 21:25_ @gabrtv said "we should write up an issue so we throw a 400 w/ a nice error message instead of a 500"

_From @bfosberry on May 21, 2015 21:36_ I think in the latest version (1.6.1) this comes out as a SSHException, not a TypeError

_From @bfosberry on May 21, 2015 21:38_ Also the same for bad auth errors: May 21 21:37:12 ip-10-12-13-195.ec2.internal sh[3317]: look_for_keys, gss_auth, gss_kex, gss_deleg_creds, gss_host) May 21 21:37:12 ip-10-12-13-195.ec2.internal sh[3317]: File...

_From @laurrentt on December 1, 2015 20:50_ I know we're slowly getting away from fleet but I got a fix for this one if you're interested: ``` def _do_ssh(cmd): with...