David Lawrence

Results 40 comments of David Lawrence

@todaywasawesome thanks for the reply. I'm not sure what you're suggesting with init containers. Our application is defined in a helm chart which Argo uses to render the k8s manifests...

@scalen you said "Helm" hooks. Did you actually mean that and you're relying on ArgoCD's translation of Helm hooks to equivalent ArgoCD phases? Additionally, what happens on a re-deploy (I...

@scalen Thanks for all the extra info. I've been looking at workflows, mainly for the canary and blue/green deployments. In the discussion (linked in my initial issue) it was suggested...

@scalen apologies if I've been unclear. I do not want to run Deployments in a PreSync hook, and I understand the difference between Phases, Hooks, and Waves. Boiling it down...

At minimum I'd suggest there's a documentation update that needs to be made. It definitely sent me down the wrong path by suggesting PreSync hooks are where to run DB...

Adding my voice to the requests for this feature. I update a CDN in a hook and on a rollback, I want the hook to run and update the CDN...

``` from timeit import timeit >>> def a(): ... return [i for i in range(1000)] ... >>> def b(): ... return range(1000) ... >>> def c(): ... return [i for...

It's incredibly common for projects to maintain some number of legacy releases, and have a need to patch multiple past releases when a serious bug or vulnerability is found. I've...

I've also been debugging this for the last 24 hours. It appears the issue is here: https://github.com/facebook/create-react-app/issues/8688 React-scipts added some shutdown logic in a patch release that's broken and causing...

In the spirit of things that would make my life easier, you should have ensured the binary name would stay the same. It's becoming reasonably common for go projects to...