Jon Moter

Results 16 comments of Jon Moter

For now I just wanted to write down the idea before it slipped out of my head. At the moment I'm pretty busy with work/family/life, so I can't commit to...

Hi rata. I'm interested in doing something with ConfigMaps, but haven't looked deeply enough into them to have a plan. How were you thinking of using them? Would you want...

At Zendesk, we have multiple environments and datacenters, so a lot of times our config values change depending on the datacenter. For example, we might deploy the same app to...

I'm not aware of anyone actively working on this, but we accept pull requests.

Have you seen the UI on the "Environments" tab at the top of the page? If you navigate to, say, Environment => Production, it will show all the projects deployed...

Copied from the Google group: > I am trying to setup ldap auth but constantly get the following error: > > ``` > {"method":"GET","path":"/login","format":"html","controller":"sessions","action":"new","status":200,"duration":31.16,"view":23.78,"db":0.0,"params":{"origin":"/"},"@timestamp":"2016-04-14T05:14:27.735Z","@version":"1","message":"[200] GET /login (sessions#new)"} > (ldap) Request...

You could also try using the "Pre-build command" to download the dependencies from GitHub before starting the `docker build`. Maybe have some sort of a pre-build script that you run...

`Gemfile.lock` can be generated, but if you delete it and regenerate it on 2 different days, you can wind up with different versions of gems. Newer versions of gems could...

A lot of our deploys with cap look something like this: ``` # Bundles your project, using --local if you have a vendor/cache if [ -d vendor/cache ]; then BUNDLE_ARGS="--local";...