Stepan Mazurov

Results 29 comments of Stepan Mazurov

I also ran into this - for now my workaround is to not use tiered aliases for different services. Looking forward to the fix, let me know if I can...

I really do want to see if this can be addressed as either part of this provider or otherwise.

Do you mean [this](https://github.com/rancher/agent/blob/0607d1cb4f34f148688cb528bb60202bfbe176d2/utilities/docker/launch_unix.go#L27-L45)? I would imagine you still need to add cert yourself via a volume.

Ok. To summarize, we should pass an env var, that if present, loads those options into the client init. Then, add to readme instructions on how to create a volume...

Hey, I will be sunsetting this service as rancher's [cron]() service is superior implementation (Imo). My reasons: * Official cron only depends on a local docker engine connection. This one...

Good idea, thats easy enough, just add a check [here](https://github.com/SocialEngine/rancher-cron/blob/master/metadata/metadata.go#L64) and "continue" if `service.status` is stopped. I'm pretty busy at the moment, I plan to certainly address it in the...

Yeah, metadata might not be the best option for this - its great to quickly get a container with a specific label, but not much else (for this use case)....

Any chance to use [`tini`](https://github.com/krallin/tini) instead? Looks like docker **1.13** onwards will implement tini inspired solution. Cleanest is probably to `apk add --update --no-cache tini` and then set it as...

yeah that stuff makes sense - just that docker chose tini for their zombie killing stuff in `1.13` is my reason for picking it. BC is not an issue -...