Earlier quoted context omitted.
What's your stack like? For those interested...
Our stack is comprised of 15 stateless micro services all built with Nodejs. MongoDB, Redis and Neo4j are used for persistence, caching, and dependency management. The fundamental piece our system is RabbitMQ which is used as our event queue. The architecture designed around events. When an application dies or a commit is made, an event propagated through the system. We also use a lot of open source software. Docker…
Runnable Sandboxes: Full-stack environments for every GitHub branch
41–50 of 56 posts
Re: Runnable Sandboxes: Full-stack environments for every GitHub branch
#42Re: Runnable Sandboxes: Full-stack environments for every GitHub branch
#43Looks like exactly what we're looking for. Why is it only available with a Github organization account though?
Support for other code repositories is on our roadmap — we are looking to hire more developers to help build support for them ! :)
Re: Runnable Sandboxes: Full-stack environments for every GitHub branch
#44This sounds neat - are there plans for an on-prem version instead of EC2? We have Mirantis OpenStack running in a bubble at my organization (we are cloud-averse).
Re: Runnable Sandboxes: Full-stack environments for every GitHub branch
#45Earlier quoted context omitted.
Support for other code repositories is on our roadmap — we are looking to hire more developers to help build support for them ! :)
We are using github, but just not github organizations...
We don't have access to the same APIs with just a personal accout
Re: Runnable Sandboxes: Full-stack environments for every GitHub branch
#46Re: Runnable Sandboxes: Full-stack environments for every GitHub branch
#47This looks very promising. I wonder if/how well they could handle a 500gb database.
Re: Runnable Sandboxes: Full-stack environments for every GitHub branch
#48Re: Runnable Sandboxes: Full-stack environments for every GitHub branch
#49Can someone help me understand what's the difference from Travis CI, Circle CI, etc?
Runnable let's you have end-to-end (full-stack) environments with every branch. The minute a branch comes up, you have an environment. This includes a clone of your database
Re: Runnable Sandboxes: Full-stack environments for every GitHub branch
#50Earlier quoted context omitted.
Do the stacks run with Docker Swarm and Docker Networking? If so, does it work well? Any strange issues you had to work around, etc?
Our stack does use swarm under the hood. So far we have not seen any major issues with scheduling across 100 servers. However we have seen issues with the swarm event stream disconnecting. Our workaround was connect to the event stream of the docker engines directly and use the `since` parameter. We currently use weave net to handle docker networking and have not had major issues with it.