-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: parallelize dspot on Kubernetes (#802) #832
Conversation
Looks good to me. However, I don't get the point with the two Travis. Where is the difference between without_dspot and with_dspot? Both traces look exactly the same. Thank you! |
Hi @danglotb , ah sorry I might have missed out elaborating that. The difference is in the pom.xml file . I assume that if people know about this technology then they would add dspot as maven dependency rather than using a jar file :) . The difference between the pom files is down below to spare you the trouble looking up.
Cheers :) |
Hello @tailp Okay, I saw the difference. But If I get it right, the Travis build should trigger dspot on your project, right? But I can't see this execution. Thus, IHMO your dspot's configuration is probably wrong since it looks like you are defining properties (that should be defined in a separate file Best |
Hi @danglotb :), An example procedure can be like this for the stand-alone dspot without repairnator:
If this is paired together with repairnator, you can add a gitwebhook on the repo and when travis build is done running it will trigger the monitor to analyze the repo and fetch the recent build Id which either is sent to repairnator if the travis build failed for repairing or further amplication using Dspot upon success. The design for this monitor is in here I need to discuss this with @monperrus later about whether we should modify the repairnator scanner for submitting build id also for Dspot or create a completely new dspot scanner to fetch build id, but that's just an add on and for now everything is functioning fine :) . Regard the configuration, do you mean my "with_dspot" travis branch pom.xml ?. I just followed your doc and configured it that way and it seems to be working just fine for me running dspot as maven plugin. Maybe I misunderstood something, please enlighten me if that's the case :) . Best |
Without gcloud the mongodb yaml file will not work.
…add more README content
Thanks for the progress. I would suggest to make baby pull requests. The first one could only contain a |
Sorry for the late answer :) . It will be done with a new fork and in a new PR . |
This continues in #841 |
Hi, this PR contains necessary files for deploying Dspot on Kubernetes in reference to this issue (#802). For more details please check out the readme at this link :) . Tell me also if there are any problems to fix.