James Ward

Results 233 comments of James Ward
trafficstars

I've seen a few similar race conditions with OiCS. One of these was recently fixed but I'm not sure if it has been deployed yet. If we keep seeing this...

In the case of a project I was just working on, it was detecting and running the Jib build, but I really want it to skip that one and go...

Yeah. So: ``` "build": { "docker": false } ``` ``` "build": { "jib": false } ``` ``` "build": { "pack": false } ```

Yeah, I was able to work around this which was nice :) https://github.com/alexismp/pdf-merger/blob/java11cr-button/app.json

Buildpacks don't always require a `Procfile` so we can't rely on that.

This particular project has Jib & Procfile and there is a possibility that a project has `Dockerfile`, Jib, and Buildpacks. The only viable way I see to control the decision...

Yeah, this would be great. Also related to #14

There is a few factors to this to think about: - What is the first time build duration compared to a subsequent one that can utilize a warm cache? Cloud...

Here is another one with a `Dockerfile`: https://github.com/jamesward/hello-kotlin-ktor Cloud Build: `time gcloud builds submit --tag gcr.io/jw-demo/hello-kotlin-ktor .` = 2m41s Non-Boosted Cloud Shell: `time docker build -t gcr.io/jw-demo/hello-kotlin-ktor .` = 8m51s...

Yeah, I'm kinda leaning towards trying to improve things with Cloud Shell, and work on #75 for helping the user setup Cloud Build as a CI/CD next step perhaps with...